class MongoMapperTest::MachineWithLoopbackTest

Public Instance Methods

setup() click to toggle source
# File test/unit/integrations/mongo_mapper_test.rb, line 518
def setup
  @model = new_model do
    key :updated_at, Time
    
    before_update do |record|
      record.updated_at = Time.now
    end
  end
  
  @machine = StateMachine::Machine.new(@model, :initial => :parked)
  @machine.event :park
  
  @record = @model.create(:updated_at => Time.now - 1)
  @transition = StateMachine::Transition.new(@record, @machine, :park, :parked, :parked)
  
  @timestamp = @record.updated_at
  @transition.perform
end
test_should_update_record() click to toggle source
# File test/unit/integrations/mongo_mapper_test.rb, line 537
def test_should_update_record
  assert_not_equal @timestamp, @record.updated_at
end