diff options
Diffstat (limited to 'test/factories/conferences.rb')
-rw-r--r-- | test/factories/conferences.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/factories/conferences.rb b/test/factories/conferences.rb new file mode 100644 index 0000000..3c49a7a --- /dev/null +++ b/test/factories/conferences.rb @@ -0,0 +1,8 @@ +# Read about factories at http://github.com/thoughtbot/factory_girl + +Factory.define :conference do |f| + f.sequence(:name) { |n| "Conference room #{n}" } + f.open_for_anybody true + f.association :conferenceable, :factory => :tenant + f.max_members 10 +end
\ No newline at end of file |