summaryrefslogtreecommitdiff
path: root/test/factories/tenant_memberships.rb
blob: 38c4cb86366e3c91e11493afe412bde4782193e3 (plain)
1
2
3
4
5
6
7
8
# Read about factories at http://github.com/thoughtbot/factory_girl

FactoryGirl.define do
  factory :tenant_membership do
    association :user
    association :tenant
  end
end