|
|
|
|
|
by FrancoisBosun
1870 days ago
|
|
Jim Weirich wrote rspec-given. This gem allows one to write really nice assertions: Given { @stack = Stack.new }
When { @stack.push(1) }
Then { @stack.peek == 1 }
And { @stack.size == 1 }
What you wish for is embedded in When and And. Check it out: https://github.com/jimweirich/rspec-given |
|