diff options
Diffstat (limited to 'test/fixtures')
-rw-r--r-- | test/fixtures/game_settings.yml (renamed from test/fixtures/game_options.yml) | 12 | ||||
-rw-r--r-- | test/fixtures/matches.yml | 2 | ||||
-rw-r--r-- | test/fixtures/tournaments.yml | 2 |
3 files changed, 14 insertions, 2 deletions
diff --git a/test/fixtures/game_options.yml b/test/fixtures/game_settings.yml index eb4760a..5626c97 100644 --- a/test/fixtures/game_options.yml +++ b/test/fixtures/game_settings.yml @@ -1,11 +1,19 @@ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html one: - vartype: 1 + game_id: + type: 1 name: MyString default: MyText + discription: MyText + type_opt: MyText + display_order: 1 two: - vartype: 1 + game_id: + type: 1 name: MyString default: MyText + discription: MyText + type_opt: MyText + display_order: 1 diff --git a/test/fixtures/matches.yml b/test/fixtures/matches.yml index 956229c..00af9f5 100644 --- a/test/fixtures/matches.yml +++ b/test/fixtures/matches.yml @@ -1,11 +1,13 @@ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html one: + status: 1 tournament_id: name: MyString winner_id: two: + status: 1 tournament_id: name: MyString winner_id: diff --git a/test/fixtures/tournaments.yml b/test/fixtures/tournaments.yml index 27c92f9..89edc9f 100644 --- a/test/fixtures/tournaments.yml +++ b/test/fixtures/tournaments.yml @@ -1,6 +1,7 @@ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html one: + name: MyString game_id: status: 1 min_players_per_team: 1 @@ -11,6 +12,7 @@ one: randomized_teams: false two: + name: MyString game_id: status: 1 min_players_per_team: 1 |