Guest User

Untitled

a guest
Feb 20th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. describe SavingsAccount do
  2. it_should fullfill_role("account") do |contract|
  3. contract.overdraft do |account|
  4. initial_balance = account.balance
  5. account.withdraw(initial_balance + 1)
  6. account.balance.should == initial_balance
  7. end
  8. end
  9. end
Add Comment
Please, Sign In to add comment