File: machine_with_default_scope_test.rb

package info (click to toggle)
ruby-state-machines-activerecord 0.103.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 432 kB
  • sloc: ruby: 2,527; makefile: 6
file content (20 lines) | stat: -rw-r--r-- 464 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

require_relative 'test_helper'

class MachineWithDefaultScopeTest < BaseTestCase
  def setup
    @model = new_model
    @machine = StateMachines::Machine.new(@model, initial: :parked)
    @machine.state :idling

    @model.class_eval do
      default_scope { with_state(:parked, :idling) }
    end
  end

  def test_should_set_initial_state_on_created_object
    object = @model.new
    assert_equal 'parked', object.state
  end
end