Add specs for Mutant::Subject#indentification

This commit is contained in:
Markus Schirp 2013-09-14 01:10:03 +02:00
parent 2b620f4889
commit 7bbe86ff95

View file

@ -0,0 +1,39 @@
require 'spec_helper'
describe Mutant::Subject do
let(:class_under_test) do
Class.new(described_class) do
def match_expression
'match'
end
end
end
let(:object) { class_under_test.new(context, node) }
let(:node) do
double('Node', :location => location)
end
let(:location) do
double('Location', :expression => expression)
end
let(:expression) do
double('Expression', :line => 'source_line')
end
let(:context) do
double(
'Context',
:source_path => 'source_path',
:source_line => 'source_line',
)
end
describe '#identification' do
subject { object.identification }
it { should eql('match:source_path:source_line') }
end
end