8 lines
123 B
Ruby
8 lines
123 B
Ruby
FactoryGirl.define do
|
|
factory :table do
|
|
title "Test Table"
|
|
current_game { FactoryGirl.create(:game) }
|
|
end
|
|
|
|
end
|