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:
parent
f06fc0bc4c
commit
a7226482a3
1 changed files with 3 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue