File: machine_with_states_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 (13 lines) | stat: -rw-r--r-- 310 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
require_relative 'test_helper'

class MachineWithStatesTest < BaseTestCase
  def setup
    @model = new_model
    @machine = StateMachines::Machine.new(@model)
    @machine.state :first_gear
  end

  def test_should_humanize_name
    assert_equal 'first gear', @machine.state(:first_gear).human_name
  end
end