7293386c26
* rubocop still warns about this on ruby 1.9.3, so it was fixed so it produces less output on travis.
25 lines
725 B
Ruby
25 lines
725 B
Ruby
# encoding: utf-8
|
|
|
|
require 'spec_helper'
|
|
|
|
describe Mutant::Subject, '#mutations' do
|
|
subject { object.mutations }
|
|
|
|
let(:class_under_test) do
|
|
mutation_a, mutation_b = self.mutation_a, self.mutation_b
|
|
Class.new(described_class) do
|
|
define_method(:generate_mutations) do |emitter|
|
|
emitter << mutation_a
|
|
emitter << mutation_b
|
|
end
|
|
end
|
|
end
|
|
|
|
let(:object) { class_under_test.new(context, node) }
|
|
let(:node) { double('Node') }
|
|
let(:context) { double('Context') }
|
|
let(:mutation_a) { double('Mutation A') }
|
|
let(:mutation_b) { double('Mutation B') }
|
|
|
|
it { should eql([mutation_a, mutation_b]) }
|
|
end
|