6df5811a87
* I dislike the global infection RSpec does. This commit is a first step to get a rid of it. * Also remove the need for `require 'spec_helper` in each spec file with adjusting `.rspec`.
11 lines
248 B
Ruby
11 lines
248 B
Ruby
RSpec.describe Mutant::Context, '#root' do
|
|
subject { object.root }
|
|
|
|
let(:object) { described_class.allocate }
|
|
|
|
it 'should raise error' do
|
|
expect do
|
|
subject
|
|
end.to raise_error('Mutant::Context#root is not implemented')
|
|
end
|
|
end
|