summaryrefslogtreecommitdiff
path: root/test/unit/tenant_test.rb
diff options
context:
space:
mode:
authorStefan Wintermeyer <stefan.wintermeyer@amooma.de>2012-12-17 12:01:45 +0100
committerStefan Wintermeyer <stefan.wintermeyer@amooma.de>2012-12-17 12:01:45 +0100
commitb80bd744ad873f6fc43018bc4bfb90677de167bd (patch)
tree072c4b0e33d442528555b82c415f5e7a1712b2b0 /test/unit/tenant_test.rb
parent3e706c2025ecc5523e81ad649639ef2ff75e7bac (diff)
Start of GS5.
Diffstat (limited to 'test/unit/tenant_test.rb')
-rw-r--r--test/unit/tenant_test.rb33
1 files changed, 33 insertions, 0 deletions
diff --git a/test/unit/tenant_test.rb b/test/unit/tenant_test.rb
new file mode 100644
index 0000000..4d4abce
--- /dev/null
+++ b/test/unit/tenant_test.rb
@@ -0,0 +1,33 @@
+require 'test_helper'
+
+class TenantTest < ActiveSupport::TestCase
+ def test_should_have_a_valid_factory
+ assert Factory.build(:tenant).valid?
+ end
+
+ def test_should_have_unique_name
+ tenant = Factory.create(:tenant)
+ assert !Factory.build(:tenant, :name => tenant.name).valid?
+ assert Factory.build(:tenant, :name => "different_#{tenant.name}").valid?
+ end
+
+ def test_that_the_initial_state_should_be_active
+ @tenant = Factory.create(:tenant)
+ assert_equal 'active', @tenant.state
+ assert @tenant.active?
+ end
+
+ def test_not_active_state_will_not_be_displayed
+ @tenant = Factory.create(:tenant)
+ assert_equal 1, Tenant.count
+
+ @tenant.deactivate!
+ assert_equal 0, Tenant.count
+ assert_equal 1, Tenant.unscoped.count
+
+ @tenant.activate!
+ assert_equal 1, Tenant.count
+ assert_equal Tenant.count, Tenant.unscoped.count
+ end
+
+end