free_mutant/test_app/spec/shared/idempotent_method_behavior.rb
2012-11-24 22:42:05 +01:00

7 lines
152 B
Ruby

# encoding: utf-8
shared_examples_for 'an idempotent method' do
it 'is idempotent' do
should equal(instance_eval(&self.class.subject))
end
end