![Markus Schirp](/assets/img/avatar_default.png)
* Add tests for all edge cases I could create * Add infrastructure for loading mutations into the vm. * The fun part is next!
12 lines
236 B
Ruby
12 lines
236 B
Ruby
require 'spec_helper'
|
|
|
|
describe Mutant::Mutatee,'.new' do
|
|
subject { object.new(context,ast) }
|
|
|
|
let(:object) { described_class }
|
|
|
|
let(:context) { mock('Context') }
|
|
let(:ast) { mock('AST') }
|
|
|
|
it { should be_frozen }
|
|
end
|