free_mutant/spec/unit/mutant/context/root_spec.rb
Markus Schirp d50ecc483d Cleanup missing whitespace after comma
* There must be a code metric tool helping me in converting my style.
2012-07-31 04:10:37 +02:00

11 lines
258 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