Sha256: a63348b5f619300ebca72841a4eafaeb436fa31965d2b7dca260718e374d161d
Contents?: true
Size: 461 Bytes
Versions: 14
Compression:
Stored size: 461 Bytes
Contents
require_relative '../../test_helper' class PathTest < StateMachinesTest def setup @klass = Class.new @machine = StateMachines::Machine.new(@klass) @object = @klass.new end def test_should_raise_exception_if_invalid_option_specified exception = assert_raises(ArgumentError) { StateMachines::Path.new(@object, @machine, invalid: true) } assert_equal 'Unknown key: :invalid. Valid keys are: :target, :guard', exception.message end end
Version data entries
14 entries across 14 versions & 2 rubygems