File: state_machine_test.rb

package info (click to toggle)
ruby-state-machine 1.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 3,764 kB
  • ctags: 6,623
  • sloc: ruby: 26,008; makefile: 11
file content (31 lines) | stat: -rw-r--r-- 691 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
25
26
27
28
29
30
31
require File.expand_path(File.dirname(__FILE__) + '/../test_helper')

class StateMachineByDefaultTest < Test::Unit::TestCase
  def setup
    @klass = Class.new
    @machine = @klass.state_machine
  end
  
  def test_should_use_state_attribute
    assert_equal :state, @machine.attribute
  end
end

class StateMachineTest < Test::Unit::TestCase
  def setup
    @klass = Class.new
  end
  
  def test_should_allow_state_machines_on_any_class
    assert @klass.respond_to?(:state_machine)
  end
  
  def test_should_evaluate_block_within_machine_context
    responded = false
    @klass.state_machine(:state) do
      responded = respond_to?(:event)
    end
    
    assert responded
  end
end