free_mutant/spec/integration/mutant/zombie_spec.rb

11 lines
273 B
Ruby
Raw Normal View History

# encoding: utf-8
require 'spec_helper'
describe Mutant, 'as a zombie' do
specify 'it allows to create zombie from mutant' do
expect { Mutant.zombify }.to change { !!defined?(Zombie) }.from(false).to(true)
2014-01-19 15:42:21 -05:00
expect(Zombie.constants).to include(:Mutant)
end
end