File: machine_with_aliased_attribute_test.rb

package info (click to toggle)
ruby-state-machines-activerecord 0.9.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 340 kB
  • sloc: ruby: 1,922; makefile: 5
file content (23 lines) | stat: -rw-r--r-- 538 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require_relative 'test_helper'

class MachineWithAliasedAttributeTest < BaseTestCase
  def setup
    @model = new_model do
      alias_attribute :vehicle_status, :state
    end

    @machine = StateMachines::Machine.new(@model, :status, :attribute => :vehicle_status)
    @machine.state :parked

    @record = @model.new
  end

  def test_should_check_custom_attribute_for_predicate
    @record.vehicle_status = nil
    refute @record.status?(:parked)

    @record.vehicle_status = 'parked'
    assert @record.status?(:parked)
  end
end