free_mutant/spec/shared/idempotent_method_behavior.rb

8 lines
152 B
Ruby
Raw Normal View History

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