aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/test
diff options
context:
space:
mode:
authorFlorent Guilleux <florent2@gmail.com>2012-12-01 13:20:39 -0500
committerFlorent Guilleux <florent2@gmail.com>2012-12-01 13:20:39 -0500
commit90c887fa7d0c454b7533e208daefc342dea4d5f3 (patch)
tree330d9fd049b3fbbba80dbed5dbe0620d972d06d2 /activemodel/test
parent5ff59704f68d284381606a1b76e4ffcfd73b2cfa (diff)
downloadrails-90c887fa7d0c454b7533e208daefc342dea4d5f3.tar.gz
rails-90c887fa7d0c454b7533e208daefc342dea4d5f3.tar.bz2
rails-90c887fa7d0c454b7533e208daefc342dea4d5f3.zip
Remove trailing whitespaces
Diffstat (limited to 'activemodel/test')
-rw-r--r--activemodel/test/cases/validations/format_validation_test.rb4
-rw-r--r--activemodel/test/models/oauthed_user.rb2
-rw-r--r--activemodel/test/models/user.rb2
3 files changed, 4 insertions, 4 deletions
diff --git a/activemodel/test/cases/validations/format_validation_test.rb b/activemodel/test/cases/validations/format_validation_test.rb
index 308a3c6cef..1adb3cea49 100644
--- a/activemodel/test/cases/validations/format_validation_test.rb
+++ b/activemodel/test/cases/validations/format_validation_test.rb
@@ -68,11 +68,11 @@ class PresenceValidationTest < ActiveModel::TestCase
assert t.invalid?
assert_equal ["can't be Invalid title"], t.errors[:title]
end
-
+
def test_validate_format_of_with_multiline_regexp_should_raise_error
assert_raise(ArgumentError) { Topic.validates_format_of(:title, :with => /^Valid Title$/) }
end
-
+
def test_validate_format_of_with_multiline_regexp_and_option
assert_nothing_raised(ArgumentError) do
Topic.validates_format_of(:title, :with => /^Valid Title$/, :multiline => true)
diff --git a/activemodel/test/models/oauthed_user.rb b/activemodel/test/models/oauthed_user.rb
index 9750bc19d4..c6923c4f58 100644
--- a/activemodel/test/models/oauthed_user.rb
+++ b/activemodel/test/models/oauthed_user.rb
@@ -2,7 +2,7 @@ class OauthedUser
extend ActiveModel::Callbacks
include ActiveModel::Validations
include ActiveModel::SecurePassword
-
+
define_model_callbacks :create
has_secure_password(validations: false)
diff --git a/activemodel/test/models/user.rb b/activemodel/test/models/user.rb
index 4b11df12bf..c38881063e 100644
--- a/activemodel/test/models/user.rb
+++ b/activemodel/test/models/user.rb
@@ -2,7 +2,7 @@ class User
extend ActiveModel::Callbacks
include ActiveModel::Validations
include ActiveModel::SecurePassword
-
+
define_model_callbacks :create
has_secure_password