From 141f8b1a7e42928e94cccd0c8f89fdd56f8e2efe Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Sat, 28 Oct 2023 17:32:45 -0400 Subject: created puzzle and score tables --- test/fixtures/wittle/puzzles.yml | 11 +++++++++++ test/fixtures/wittle/scores.yml | 13 +++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 test/fixtures/wittle/puzzles.yml create mode 100644 test/fixtures/wittle/scores.yml (limited to 'test/fixtures') diff --git a/test/fixtures/wittle/puzzles.yml b/test/fixtures/wittle/puzzles.yml new file mode 100644 index 0000000..75f9eab --- /dev/null +++ b/test/fixtures/wittle/puzzles.yml @@ -0,0 +1,11 @@ +# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + data: MyText + solved_data: MyText + category: MyString + +two: + data: MyText + solved_data: MyText + category: MyString diff --git a/test/fixtures/wittle/scores.yml b/test/fixtures/wittle/scores.yml new file mode 100644 index 0000000..1f21c4c --- /dev/null +++ b/test/fixtures/wittle/scores.yml @@ -0,0 +1,13 @@ +# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + puzzle: one + name: MyString + ip: MyString + seconds_taken: 1 + +two: + puzzle: two + name: MyString + ip: MyString + seconds_taken: 1 -- cgit 1.4.1