How to Synchronize

In our current implementation, the debit and credit transactions are processed synchronously by our simplistic Account class:

 class​ Account
 def​ credit(amount)
  @balance = amount
 end
 
 def​ balance
  @balance
 end
 
 def​ debit(amount)
  @balance -= amount
 end
 end

This implementation, where the balance is updated during the method call to credit or debit, means that we can be certain the balance will have been updated by the time Cucumber checks the account balance in the final Then step of our scenario.

 Feature​: Cash Withdrawal
 Scenario​: Successful withdrawal from an account in credit
  Given my account has ...

Get The Cucumber Book, 2nd Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.