Worlds Bets
This commit is contained in:
20
spec/factories/world_bets.rb
Normal file
20
spec/factories/world_bets.rb
Normal file
@@ -0,0 +1,20 @@
|
||||
# == Schema Information
|
||||
#
|
||||
# Table name: world_bets
|
||||
#
|
||||
# id :integer not null, primary key
|
||||
# bet :string
|
||||
# french_score :integer
|
||||
# name :string
|
||||
# score :integer
|
||||
# world_score :integer
|
||||
# created_at :datetime not null
|
||||
# updated_at :datetime not null
|
||||
#
|
||||
FactoryBot.define do
|
||||
factory :world_bet do
|
||||
name { "MyString" }
|
||||
bet { "MyString" }
|
||||
score { 1 }
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user