Sha256: dd1fca4139a4846036b0f0b948ff08225fbc9b5111309ff35956333dc740dd81
Contents?: true
Size: 521 Bytes
Versions: 14
Compression:
Stored size: 521 Bytes
Contents
require_relative '../../test_helper' class BranchWithMultipleToRequirementsTest < StateMachinesTest def setup @object = Object.new @branch = StateMachines::Branch.new(to: [:idling, :parked]) end def test_should_match_if_included assert @branch.matches?(@object, to: :idling) end def test_should_not_match_if_not_included refute @branch.matches?(@object, to: :first_gear) end def test_should_be_included_in_known_states assert_equal [:idling, :parked], @branch.known_states end end
Version data entries
14 entries across 14 versions & 2 rubygems