free_mutant/spec/unit/mutant/context/root_spec.rb

12 lines
252 B
Ruby
Raw Normal View History

require 'spec_helper'
describe Mutant::Context, '#root' do
2013-02-16 15:26:49 -05:00
subject { object.root }
let(:object) { described_class.allocate }
it 'should raise error' do
expect { subject }.to raise_error('Mutant::Context#root is not implemented')
end
end