module ActiveModel::Lint::Tests
def assert_boolean(result, name)
def assert_boolean(result, name) assert result == true || result == false, "#{name} should be a boolean" end
def model
def model assert_respond_to @model, :to_model @model.to_model end
def test_errors_aref
If localization is used, the strings should be localized for the current
an array of strings that are the errors for the attribute in question.
for a given attribute. If errors are present, the method should return
errors[attribute] is used to retrieve the errors of a model
Fails otherwise.
[](attribute) on the result of this method returns an array.
Passes if the object's model responds to errors and if calling
def test_errors_aref assert_respond_to model, :errors assert_equal [], model.errors[:hello], "errors#[] should return an empty Array" end
def test_model_naming
:singular and :plural.
returns a string with some convenience methods: :human,
an instance method and as a class method, and if calling this method
Passes if the object's model responds to model_name both as
def test_model_naming assert_respond_to model.class, :model_name model_name = model.class.model_name assert_respond_to model_name, :to_str assert_respond_to model_name.human, :to_str assert_respond_to model_name.singular, :to_str assert_respond_to model_name.plural, :to_str assert_respond_to model, :model_name assert_equal model.model_name, model.class.model_name end
def test_persisted?
will route to the create action. If it is persisted, a form for the
If the object is not persisted, a form for that object, for instance,
persisted? is used when calculating the URL for an object.
calling this method returns either +true+ or +false+. Fails otherwise.
Passes if the object's model responds to persisted? and if
def test_persisted? assert_respond_to model, :persisted? assert_boolean model.persisted?, "persisted?" end
def test_to_key
to_key returns an Enumerable of all (primary) key attributes
Fails otherwise.
this method returns +nil+ when the object is not persisted.
Passes if the object's model responds to to_key and if calling
def test_to_key assert_respond_to model, :to_key def model.persisted?() false end assert model.to_key.nil?, "to_key should return nil when `persisted?` returns false" end
def test_to_param
tests for this behavior in lint because it doesn't make sense to force
default in case the record uses a composite primary key. There are no
Implementers can decide to either raise an exception or provide a
to_param is used to represent the object's key in URLs.
Fails otherwise.
calling this method returns +nil+ when the object is not persisted.
Passes if the object's model responds to to_param and if
def test_to_param assert_respond_to model, :to_param def model.to_key() [1] end def model.persisted?() false end assert model.to_param.nil?, "to_param should return nil when `persisted?` returns false" end
def test_to_partial_path
to_partial_path is used for looking up partials. For example,
calling this method returns a string. Fails otherwise.
Passes if the object's model responds to to_partial_path and if
def test_to_partial_path assert_respond_to model, :to_partial_path assert_kind_of String, model.to_partial_path end