aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/fixtures/developer.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/developer.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/developer.rb')
-rw-r--r--activerecord/test/fixtures/developer.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/test/fixtures/developer.rb b/activerecord/test/fixtures/developer.rb
index 737fc3824b..1c4cc30506 100644
--- a/activerecord/test/fixtures/developer.rb
+++ b/activerecord/test/fixtures/developer.rb
@@ -3,6 +3,6 @@ class Developer < ActiveRecord::Base
protected
def validate
- errors.add_on_boundry_breaking("name", 3..20)
+ errors.add_on_boundary_breaking("name", 3..20)
end
-end \ No newline at end of file
+end