d50ecc483d
* There must be a code metric tool helping me in converting my style.
14 lines
386 B
Ruby
14 lines
386 B
Ruby
require 'spec_helper'
|
|
|
|
# This spec is only present to ensure 100% test coverage.
|
|
# The code should not be triggered on runtime.
|
|
|
|
describe Mutant::Matcher, '#each' do
|
|
subject { object.send(:each) }
|
|
|
|
let(:object) { described_class.allocate }
|
|
|
|
it 'should raise error' do
|
|
expect { subject }.to raise_error(NotImplementedError, 'Mutant::Matcher#each is not implemented')
|
|
end
|
|
end
|