File: machine_with_loopback_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 (24 lines) | stat: -rw-r--r-- 620 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# frozen_string_literal: true

require_relative 'test_helper'

class MachineWithLoopbackTest < BaseTestCase
  def setup
    @model = new_model do
      connection.add_column table_name, :updated_at, :datetime
    end

    @machine = StateMachines::Machine.new(@model, initial: :parked)
    @machine.event :park

    @record = @model.create(updated_at: Time.now - 1)
    @transition = StateMachines::Transition.new(@record, @machine, :park, :parked, :parked)

    @timestamp = @record.updated_at
    @transition.perform
  end

  def test_should_not_update_record
    assert_equal @timestamp, @record.updated_at
  end
end