Sha256: 41b05edad23147788af2a17d7b0cffe83480d62af6192112c2daafe150373d9b
Contents?: true
Size: 353 Bytes
Versions: 19
Compression:
Stored size: 353 Bytes
Contents
require_relative 'test_helper' class MachineWithStaticInitialStateTest < BaseTestCase def setup @model = new_model @machine = StateMachines::Machine.new(@model, initial: :parked, integration: :active_model) end def test_should_set_initial_state_on_created_object record = @model.new assert_equal 'parked', record.state end end
Version data entries
19 entries across 19 versions & 2 rubygems