class Model

Attributes

persisted[RW]
persisted?[RW]
updated_at[RW]

Public Class Methods

new(updated_at=nil) click to toggle source
# File test/test_helper.rb, line 66
def initialize(updated_at=nil)
  @persisted = true
  self.updated_at = updated_at
end

Public Instance Methods

to_xml(*args) click to toggle source
# File test/test_helper.rb, line 62
def to_xml(*args)
  "<xml />"
end