1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
require File.expand_path(File.dirname(__FILE__) + '/../test_helper')
class StateMachineByDefaultTest < Test::Unit::TestCase
def setup
@klass = Class.new
@machine = @klass.state_machine
end
def test_should_use_state_attribute
assert_equal :state, @machine.attribute
end
end
class StateMachineTest < Test::Unit::TestCase
def setup
@klass = Class.new
end
def test_should_allow_state_machines_on_any_class
assert @klass.respond_to?(:state_machine)
end
def test_should_evaluate_block_within_machine_context
responded = false
@klass.state_machine(:state) do
responded = respond_to?(:event)
end
assert responded
end
end
|