Sha256: 19abd58f68718803682fb01b5d5e9ffbf89f985ca771fa21735dd2b48ade2cd0
Contents?: true
Size: 878 Bytes
Versions: 14
Compression:
Stored size: 878 Bytes
Contents
require_relative '../../test_helper' class CallbackWithImplicitRequirementsTest < StateMachinesTest def setup @object = Object.new @callback = StateMachines::Callback.new(:before, parked: :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