free_mutant/spec/integration/mutant/zombie_spec.rb

7 lines
231 B
Ruby

RSpec.describe 'as a zombie' do
specify 'it allows to create zombie from mutant' do
expect { Mutant.zombify }.to change { defined?(Zombie) }.from(nil).to('constant')
expect(Zombie.constants).to include(:Mutant)
end
end