free_mutant/spec/integration/mutant/zombie_spec.rb
Markus Schirp fa3e77f981 Add Mutant::Zombifier
That stuff acutally works!
2013-06-28 23:23:05 +02:00

8 lines
202 B
Ruby

require 'spec_helper'
describe Mutant, 'as a zombie' do
specify 'it allows to create zombie from mutant' do
Mutant::Zombifier.run('mutant')
Zombie.constants.should include(:Mutant)
end
end