summaryrefslogtreecommitdiff
path: root/users/test
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2013-07-18 12:28:51 +0200
committerAzul <azul@leap.se>2013-07-24 10:55:50 +0200
commita2e49d1b946fa34dd41ce1f07920515df13e09db (patch)
treeddd2dcd48954c50b676b2f585e1c29a7f477faf0 /users/test
parentcc96c60c4617c09379d5e1ddbefa42407329c19a (diff)
local email adds domain if needed
Diffstat (limited to 'users/test')
-rw-r--r--users/test/unit/local_email_test.rb27
1 files changed, 27 insertions, 0 deletions
diff --git a/users/test/unit/local_email_test.rb b/users/test/unit/local_email_test.rb
new file mode 100644
index 0000000..9031a98
--- /dev/null
+++ b/users/test/unit/local_email_test.rb
@@ -0,0 +1,27 @@
+require 'test_helper'
+
+class LocalEmailTest < ActiveSupport::TestCase
+
+ test "appends domain" do
+ local = LocalEmail.new(handle)
+ assert_equal LocalEmail.new(email), local
+ end
+
+ test "returns handle" do
+ local = LocalEmail.new(email)
+ assert_equal handle, local.handle
+ end
+
+ test "prints full email" do
+ local = LocalEmail.new(handle)
+ assert_equal email, "#{local}"
+ end
+
+ def handle
+ "asdf"
+ end
+
+ def email
+ "asdf@" + APP_CONFIG[:domain]
+ end
+end