-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
We're making the assumption that the BIC that we get back from the Ibanizator is "good enough". There is more to read about this at: softwareinmotion/ibanizator#10 This reverts commit 558d56e.
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
module BankTools | ||
module DE | ||
VERSION = "2.0.1" | ||
VERSION = "2.1.0" | ||
end | ||
end |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,11 +28,11 @@ def expect_normalization(from, unto) | |
|
||
describe BankTools::DE::Account, "#valid?" do | ||
it "is true with no errors" do | ||
expect(BankTools::DE::Account.new("12").valid?).to be_true | ||
expect(BankTools::DE::Account.new("12").valid?).to be_truthy | ||
This comment has been minimized.
Sorry, something went wrong.
soma
Member
|
||
end | ||
|
||
it "is false with errors" do | ||
expect(BankTools::DE::Account.new("1").valid?).to be_false | ||
expect(BankTools::DE::Account.new("1").valid?).to be_falsy | ||
end | ||
end | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,11 +19,11 @@ def expect_normalization(from, unto) | |
|
||
describe BankTools::DE::BLZ, "#valid?" do | ||
it "is true with no errors" do | ||
expect(BankTools::DE::BLZ.new("123 456 78").valid?).to be_true | ||
expect(BankTools::DE::BLZ.new("123 456 78").valid?).to be_truthy | ||
This comment has been minimized.
Sorry, something went wrong.
soma
Member
|
||
end | ||
|
||
it "is false with errors" do | ||
expect(BankTools::DE::BLZ.new("1").valid?).to be_false | ||
expect(BankTools::DE::BLZ.new("1").valid?).to be_falsy | ||
end | ||
end | ||
|
||
|
2 comments
on commit e67a8cd
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice how small a change this was!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
😄
Hm, Isn’t this line kinda duplicated with the above line #37? Or its sent into that method twice? Looks weird!