Sha256: 2f4bcac872ea3fc90052df501c8f3c6815e4d0d29d9edf5a6ec6a640fddca9a4

Contents?: true

Size: 1.44 KB

Versions: 4

Compression:

Stored size: 1.44 KB

Contents

require File.expand_path(File.dirname(__FILE__) + '/../test_helper')

class ErrorByDefaultTest < Test::Unit::TestCase
  def setup
    @machine = EnumStateMachine::Machine.new(Class.new)
    @collection = EnumStateMachine::NodeCollection.new(@machine)
  end
  
  def test_should_not_have_any_nodes
    assert_equal 0, @collection.length
  end
  
  def test_should_have_a_machine
    assert_equal @machine, @collection.machine
  end
  
  def test_should_index_by_name
    @collection << object = Struct.new(:name).new(:parked)
    assert_equal object, @collection[:parked]
  end
end

class ErrorWithMessageTest < Test::Unit::TestCase
  def setup
    @machine = EnumStateMachine::Machine.new(Class.new)
    @collection = EnumStateMachine::NodeCollection.new(@machine)
  end
  
  def test_should_raise_exception_if_invalid_option_specified
    exception = assert_raise(ArgumentError) { EnumStateMachine::NodeCollection.new(@machine, :invalid => true) }
    assert_equal 'Invalid key(s): invalid', exception.message
  end
  
  def test_should_raise_exception_on_lookup_if_invalid_index_specified
    exception = assert_raise(ArgumentError) { @collection[:something, :invalid] }
    assert_equal 'Invalid index: :invalid', exception.message
  end
  
  def test_should_raise_exception_on_fetch_if_invalid_index_specified
    exception = assert_raise(ArgumentError) { @collection.fetch(:something, :invalid) }
    assert_equal 'Invalid index: :invalid', exception.message
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
enum_state_machine-0.1.1 test/unit/error_test.rb
enum_state_machine-0.1.0 test/unit/error_test.rb
enum_state_machine-0.0.2 test/unit/error_test.rb
enum_state_machine-0.0.1 test/unit/error_test.rb