summaryrefslogtreecommitdiff
path: root/test/factories/tenant_memberships.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/factories/tenant_memberships.rb')
-rw-r--r--test/factories/tenant_memberships.rb8
1 files changed, 5 insertions, 3 deletions
diff --git a/test/factories/tenant_memberships.rb b/test/factories/tenant_memberships.rb
index ee52367..38c4cb8 100644
--- a/test/factories/tenant_memberships.rb
+++ b/test/factories/tenant_memberships.rb
@@ -1,6 +1,8 @@
# Read about factories at http://github.com/thoughtbot/factory_girl
-Factory.define :tenant_membership do |f|
- f.association :user
- f.association :tenant
+FactoryGirl.define do
+ factory :tenant_membership do
+ association :user
+ association :tenant
+ end
end \ No newline at end of file