Sha256: 5d51974f9e809870314daad89c4f425044a23d8e6b467033a6d8ba20d5e51ae1
Contents?: true
Size: 889 Bytes
Versions: 14
Compression:
Stored size: 889 Bytes
Contents
require_relative '../../test_helper' class CallbackWithExplicitRequirementsTest < StateMachinesTest def setup @object = Object.new @callback = StateMachines::Callback.new(:before, from: :parked, to: :idling, on: :ignite, do: lambda {}) end def test_should_call_with_empty_context assert @callback.call(@object, {}) end def test_should_not_call_if_from_not_included refute @callback.call(@object, from: :idling) end def test_should_not_call_if_to_not_included refute @callback.call(@object, to: :parked) end def test_should_not_call_if_on_not_included refute @callback.call(@object, on: :park) end def test_should_call_if_all_requirements_met assert @callback.call(@object, from: :parked, to: :idling, on: :ignite) end def test_should_include_in_known_states assert_equal [:parked, :idling], @callback.known_states end end
Version data entries
14 entries across 14 versions & 2 rubygems