class MongoMapperTest::MachineWithValidationsTest
Public Instance Methods
setup()
click to toggle source
# File test/unit/integrations/mongo_mapper_test.rb, line 947 def setup @model = new_model @machine = StateMachine::Machine.new(@model) @machine.state :parked @record = @model.new end
test_should_auto_prefix_custom_attributes_on_invalidation()
click to toggle source
# File test/unit/integrations/mongo_mapper_test.rb, line 963 def test_should_auto_prefix_custom_attributes_on_invalidation @machine.invalidate(@record, :event, :invalid) assert_equal ['State event is invalid'], @record.errors.full_messages end
test_should_be_valid_if_state_is_known()
click to toggle source
# File test/unit/integrations/mongo_mapper_test.rb, line 977 def test_should_be_valid_if_state_is_known @record.state = 'parked' assert @record.valid? end
test_should_clear_errors_on_reset()
click to toggle source
# File test/unit/integrations/mongo_mapper_test.rb, line 969 def test_should_clear_errors_on_reset @record.state = 'parked' @record.errors.add(:state, 'is invalid') @machine.reset(@record) assert_equal [], @record.errors.full_messages end
test_should_invalidate_using_errors()
click to toggle source
# File test/unit/integrations/mongo_mapper_test.rb, line 955 def test_should_invalidate_using_errors I18n.backend = I18n::Backend::Simple.new if Object.const_defined?(:ActiveModel) @record.state = 'parked' @machine.invalidate(@record, :state, :invalid_transition, [[:event, 'park']]) assert_equal ['State cannot transition via "park"'], @record.errors.full_messages end
test_should_not_be_valid_if_state_is_unknown()
click to toggle source
# File test/unit/integrations/mongo_mapper_test.rb, line 983 def test_should_not_be_valid_if_state_is_unknown @record.state = 'invalid' assert !@record.valid? assert_equal ['State is invalid'], @record.errors.full_messages end