aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/fixtures/company_in_module.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2004-12-16 01:32:35 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2004-12-16 01:32:35 +0000
commit1579f3b45db4b5717984174689c41b1e7f679d1b (patch)
treebce997d63c557eee0a5fd3ed7fa66515ca8a612e /activerecord/test/fixtures/company_in_module.rb
parent01e9b7c3058122ea22946be70dc796dd1aaaf7a5 (diff)
downloadrails-1579f3b45db4b5717984174689c41b1e7f679d1b.tar.gz
rails-1579f3b45db4b5717984174689c41b1e7f679d1b.tar.bz2
rails-1579f3b45db4b5717984174689c41b1e7f679d1b.zip
Added Base.validates_format_of that Validates whether the value of the specified attribute is of the correct form by matching it against the regular expression provided. [Marcel]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@174 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/test/fixtures/company_in_module.rb')
-rw-r--r--activerecord/test/fixtures/company_in_module.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/fixtures/company_in_module.rb b/activerecord/test/fixtures/company_in_module.rb
index a484ed5eaf..52b5d37b8c 100644
--- a/activerecord/test/fixtures/company_in_module.rb
+++ b/activerecord/test/fixtures/company_in_module.rb
@@ -24,7 +24,7 @@ module MyApplication
protected
def validate
- errors.add_on_boundry_breaking("name", 3..20)
+ errors.add_on_boundary_breaking("name", 3..20)
end
end