free_mutant/spec/unit/mutant/subject/mutations_spec.rb
Dan Kubb 7293386c26 Add magic encoding header to all ruby files
* rubocop still warns about this on ruby 1.9.3, so it was fixed so
  it produces less output on travis.
2013-07-28 16:03:06 -07:00

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