Commit c01dae9b1b5cc7a5f15a0526e17078eeb764870d
1 parent
86a3f924
Exists in
master
and in
5 other branches
Fixed tests
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
test/support/apartment.rb
1 | -class Rails | |
1 | +module Rails | |
2 | 2 | def self.env |
3 | 3 | ENV["RACK_ENV"] |
4 | 4 | end |
... | ... | @@ -8,7 +8,7 @@ tenants = ["tenant1", "tenant2"] |
8 | 8 | Apartment.configure do |config| |
9 | 9 | config.tenant_names = tenants |
10 | 10 | config.database_schema_file = false |
11 | - config.excluded_models = ["Product", "Store", "Animal", "Dog", "Cat"] | |
11 | + config.excluded_models = ["Product", "Store", "Region", "Speaker", "Animal", "Dog", "Cat", "Sku", "Song", "Band"] | |
12 | 12 | end |
13 | 13 | |
14 | 14 | class Tenant < ActiveRecord::Base | ... | ... |