Sha256: 43181372b444979219d337026c00da5531adba48115d29741b1f7ec9f1222add
Contents?: true
Size: 1.12 KB
Versions: 8
Compression:
Stored size: 1.12 KB
Contents
# encoding: utf-8 require 'spec_helper' describe Mutant::Mutator, '#emit' do subject { object.send(:emit, generated) } class Block attr_reader :arguments def called? defined?(@arguments) end def call(*arguments) @arguments = arguments end end let(:object) { class_under_test.new(input, parent, block) } let(:block) { Block.new } let(:input) { :input } let(:parent) { :parent } let(:class_under_test) do Class.new(described_class) do def dispatch # noop end end end context 'with generated that is not equal to input' do let(:generated) { :generated } it 'should call block' do subject block.should be_called end it 'should call block with generated' do subject block.arguments.should eql([generated]) end end context 'with generated object that is equal to input' do let(:generated) { input } it 'should not call block' do subject block.should_not be_called end end end
Version data entries
8 entries across 8 versions & 1 rubygems