aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/test
diff options
context:
space:
mode:
authorPrem Sichanugrist <s@sikac.hu>2012-10-02 21:45:09 -0400
committerPrem Sichanugrist <s@sikac.hu>2012-10-02 22:09:06 -0400
commit4f9b59dba0fe9d90f53417f0d4f1bc63679d556a (patch)
tree71490452c6ee41f9fd06ac90b5d4d3c8091c3073 /activemodel/test
parent0a507925cfc54246dc7d329936f60f8f410c38b6 (diff)
downloadrails-4f9b59dba0fe9d90f53417f0d4f1bc63679d556a.tar.gz
rails-4f9b59dba0fe9d90f53417f0d4f1bc63679d556a.tar.bz2
rails-4f9b59dba0fe9d90f53417f0d4f1bc63679d556a.zip
Make `.validators_on` accept `:kind` option
This will filter out the validators on a particular attribute based on its kind.
Diffstat (limited to 'activemodel/test')
-rw-r--r--activemodel/test/cases/validations_test.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/activemodel/test/cases/validations_test.rb b/activemodel/test/cases/validations_test.rb
index a9d32808da..66d9e51854 100644
--- a/activemodel/test/cases/validations_test.rb
+++ b/activemodel/test/cases/validations_test.rb
@@ -287,6 +287,14 @@ class ValidationsTest < ActiveModel::TestCase
assert_equal [], Topic.validators_on(:author_name)
end
+ def test_list_of_validators_on_an_attribute_based_on_kind
+ Topic.validates_presence_of :title, :content
+ Topic.validates_length_of :title, :minimum => 2
+
+ assert_equal Topic.validators_on(:title).select { |v| v.kind == :presence },
+ Topic.validators_on(:title, kind: :presence)
+ end
+
def test_validations_on_the_instance_level
auto = Automobile.new