summaryrefslogtreecommitdiffstats
path: root/test/unit/user_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/user_test.rb')
-rw-r--r--test/unit/user_test.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/unit/user_test.rb b/test/unit/user_test.rb
index 3848eab0f..0fbb7d0c9 100644
--- a/test/unit/user_test.rb
+++ b/test/unit/user_test.rb
@@ -41,6 +41,13 @@ class UserTest < ActiveSupport::TestCase
u.mail = " foo@bar.com "
assert_equal "foo@bar.com", u.mail
end
+
+ def test_mail_validation
+ u = User.new
+ u.mail = ''
+ assert !u.valid?
+ assert_equal I18n.translate('activerecord.errors.messages.blank'), u.errors.on(:mail)
+ end
def test_create
user = User.new(:firstname => "new", :lastname => "user", :mail => "newuser@somenet.foo")