class MongoMapperTest::MachineWithAliasedAttributeTest

Public Instance Methods

setup() click to toggle source
# File test/unit/integrations/mongo_mapper_test.rb, line 417
def setup
  @model = new_model do
    alias_attribute :vehicle_status, :state
  end
  
  @machine = StateMachine::Machine.new(@model, :status, :attribute => :vehicle_status)
  @machine.state :parked
  
  @record = @model.new
end
test_should_check_custom_attribute_for_predicate() click to toggle source
# File test/unit/integrations/mongo_mapper_test.rb, line 428
def test_should_check_custom_attribute_for_predicate
  @record.vehicle_status = nil
  assert !@record.status?(:parked)
  
  @record.vehicle_status = 'parked'
  assert @record.status?(:parked)
end