summaryrefslogtreecommitdiff
path: root/users/test/unit/email_test.rb
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2013-01-17 15:09:58 +0100
committerAzul <azul@leap.se>2013-01-17 15:16:53 +0100
commita8ec73a0307924610023525786bb3a9eb8b173e1 (patch)
tree16d937bfea4d18a39aad1eec86edfd4f6467d708 /users/test/unit/email_test.rb
parent7f7ba4f3d72104d67e9ecf839c9688c0580d4063 (diff)
unit tests passing
Diffstat (limited to 'users/test/unit/email_test.rb')
-rw-r--r--users/test/unit/email_test.rb61
1 files changed, 0 insertions, 61 deletions
diff --git a/users/test/unit/email_test.rb b/users/test/unit/email_test.rb
deleted file mode 100644
index d7ef1f8..0000000
--- a/users/test/unit/email_test.rb
+++ /dev/null
@@ -1,61 +0,0 @@
-require 'test_helper'
-
-class EmailTest < ActiveSupport::TestCase
-
- setup do
- @user = FactoryGirl.build :user
- @other_user = FactoryGirl.build :user
- @email_string = "valid_alias@#{APP_CONFIG[:domain]}"
- User.find_by_email_or_alias(@email_string).try(:destroy)
- end
-
- teardown do
- @user.destroy if @user.persisted? # just in case
- @other_user.destroy if @other_user.persisted?
- end
-
- test "email needs to be different from other peoples email" do
- @other_user.email = @email_string
- @other_user.save
- assert_invalid_email @email_string
- end
-
- test "email needs to be different from other peoples email aliases" do
- @other_user.email_aliases.build :email => @email_string
- @other_user.save
- assert_invalid_email @email_string
- end
-
- test "email needs to be different from email aliases" do
- @user.email_aliases.build :email => @email_string
- @user.save
- assert_invalid_email @email_string
- end
-
- test "non local emails are invalid" do
- assert_invalid_email "not_valid@mail.me"
- end
-
- test "local emails are valid" do
- local_email = "valid@#{APP_CONFIG[:domain]}"
- @user.email = local_email
- @user.valid?
- assert_equal Hash.new, @user.errors.messages
- end
-
- test "find user by email" do
- email = "finding@test.me"
- @user.email = email
- @user.save
- assert_equal @user, User.find_by_email(email)
- assert_equal @user, User.find_by_email_or_alias(email)
- assert_nil User.find_by_email_alias(email)
- end
-
- def assert_invalid_email(string)
- @user.email = string
- assert !@user.valid?
- assert @user.errors.keys.include?(:email)
- end
-
-end