1
0
Fork 0

Fix "idempotent method" shared example helper

rspec-2.13.0 changed the way the subject is exposed.
We do not have access to the block anymore.
Need to delete memoized value from the __memoized hash to reset subject.
This commit is contained in:
Markus Schirp 2013-02-24 18:35:43 +01:00
parent f06fc0bc4c
commit a7226482a3

View file

@ -2,6 +2,8 @@
shared_examples_for 'an idempotent method' do
it 'is idempotent' do
should equal(instance_eval(&self.class.subject))
first = subject
__memoized.delete(:subject)
should equal(first)
end
end