From a7226482a3ba6631e839d89cf9c04bfa23611f75 Mon Sep 17 00:00:00 2001 From: Markus Schirp Date: Sun, 24 Feb 2013 18:35:43 +0100 Subject: [PATCH] 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. --- spec/shared/idempotent_method_behavior.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/spec/shared/idempotent_method_behavior.rb b/spec/shared/idempotent_method_behavior.rb index 220d792d..6baa822b 100644 --- a/spec/shared/idempotent_method_behavior.rb +++ b/spec/shared/idempotent_method_behavior.rb @@ -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