41d9700473
* Nuke around 800 lock * Honor LSP with not anymore squeezing something non LSP compatible in the same inheritance tree. * Separate running from result tree. * Clean up kill logic and early exits on already dead mutations. * Fix #runnin? smell for reporters. * Decouple config object from VM state. Makes it serializable to enable config loading. * Fix sequence of global VM events to match PRIOR rspec infects VM with gazillions of classes / modules. Thix fixes a startup speed degeneration. * Various fixes to enhance determinism. * Replace some unneded manual double dispatch with single manual dispatch for reporter / runners.
18 lines
496 B
Ruby
18 lines
496 B
Ruby
require 'spec_helper'
|
|
|
|
describe Mutant::Subject, '#context' do
|
|
subject { object.context }
|
|
|
|
let(:class_under_test) do
|
|
Class.new(described_class)
|
|
end
|
|
|
|
let(:object) { class_under_test.new(config, context, node) }
|
|
let(:config) { Mutant::Config::DEFAULT }
|
|
let(:node) { double('Node') }
|
|
let(:context) { double('Context') }
|
|
|
|
it { should be(context) }
|
|
|
|
it_should_behave_like 'an idempotent method'
|
|
end
|