summaryrefslogtreecommitdiff
path: root/test/unit/account_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/account_test.rb')
-rw-r--r--test/unit/account_test.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/unit/account_test.rb b/test/unit/account_test.rb
index 9680b33..d56541a 100644
--- a/test/unit/account_test.rb
+++ b/test/unit/account_test.rb
@@ -21,6 +21,23 @@ class AccountTest < ActiveSupport::TestCase
user.account.destroy
end
+ test "fail to create account without invite" do
+ with_config invite_required: true do
+ user = Account.create(FactoryGirl.attributes_for(:user))
+ assert !user.valid?, "user should not be valid"
+ assert !user.persisted?, "user should not have been saved"
+ end
+ end
+
+ test "allow invite_required override" do
+ with_config invite_required: true do
+ user = Account.create(FactoryGirl.attributes_for(:user), :invite_required => false)
+ assert user.valid?, "unexpected errors: #{user.errors.inspect}"
+ assert user.persisted?, "user should have been saved"
+ user.account.destroy
+ end
+ end
+
test "create a new account" do
with_config invite_required: false do
user = Account.create(FactoryGirl.attributes_for(:user))