free_mutant/test_app/spec/shared/idempotent_method_behavior.rb

8 lines
152 B
Ruby
Raw Normal View History

2012-11-24 16:41:43 -05:00
# encoding: utf-8
shared_examples_for 'an idempotent method' do
it 'is idempotent' do
should equal(instance_eval(&self.class.subject))
end
end