instance method
test_persisted?
Ruby on Rails 3.2.22.5
Since v3.0.20Signature
test_persisted?()
Responds to persisted?
Returns a boolean that specifies whether the object has been persisted yet. This is used when calculating the URL for an object. If the object is not persisted, a form for that object, for instance, will be POSTed to the collection. If it is persisted, a form for the object will be PUT to the URL for the object.
Source
# File activemodel/lib/active_model/lint.rb, line 72
def test_persisted?
assert model.respond_to?(:persisted?), "The model should respond to persisted?"
assert_boolean model.persisted?, "persisted?"
end
Defined in activemodel/lib/active_model/lint.rb line 72
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveModel::Lint::Tests