free_mutant/spec/unit/mutant/subject/node_spec.rb
2013-01-13 22:32:03 +01:00

17 lines
359 B
Ruby

require 'spec_helper'
describe Mutant::Subject, '#node' do
subject { object.node }
let(:class_under_test) do
Class.new(described_class)
end
let(:object) { class_under_test.new(context, node) }
let(:node) { mock('Node') }
let(:context) { mock('Context') }
it { should be(node) }
it_should_behave_like 'an idempotent method'
end