free_mutant/spec/unit/mutant/context/root_spec.rb
Markus Schirp 10c3dfc390 Finalize method matching
* Add tests for all edge cases I could create
* Add infrastructure for loading mutations into the vm.
* The fun part is next!
2012-07-26 19:25:23 +02:00

11 lines
257 B
Ruby

require 'spec_helper'
describe Mutant::Context,'#root' do
subject { object.root(mock) }
let(:object) { described_class.allocate }
it 'should raise error' do
expect { subject }.to raise_error('Mutant::Context#root is not implemented')
end
end