blob: 0b342ba9938d9c2d1364072d7a2ca5e9b52adc90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
require 'test_helper'
class TenantTest < ActiveSupport::TestCase
def test_should_have_a_valid_factory
assert FactoryGirl.build(:tenant).valid?
end
def test_should_have_unique_name
tenant = FactoryGirl.create(:tenant)
assert !FactoryGirl.build(:tenant, :name => tenant.name).valid?
assert FactoryGirl.build(:tenant, :name => "different_#{tenant.name}").valid?
end
def test_that_the_initial_state_should_be_active
@tenant = FactoryGirl.create(:tenant)
assert_equal 'active', @tenant.state
assert @tenant.active?
end
def test_not_active_state_will_not_be_displayed
@tenant = FactoryGirl.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
|