From 0929719a845897cc8567cf972e07a69a71f0fa6f Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Thu, 30 Nov 2023 13:29:08 -0500 Subject: Migrate to a full rails app --- test/fixtures/puzzles.yml | 11 +++++++++++ test/fixtures/scores.yml | 13 +++++++++++++ test/fixtures/wittle/puzzles.yml | 11 ----------- test/fixtures/wittle/scores.yml | 13 ------------- 4 files changed, 24 insertions(+), 24 deletions(-) create mode 100644 test/fixtures/puzzles.yml create mode 100644 test/fixtures/scores.yml delete mode 100644 test/fixtures/wittle/puzzles.yml delete mode 100644 test/fixtures/wittle/scores.yml (limited to 'test/fixtures') diff --git a/test/fixtures/puzzles.yml b/test/fixtures/puzzles.yml new file mode 100644 index 0000000..75f9eab --- /dev/null +++ b/test/fixtures/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/scores.yml b/test/fixtures/scores.yml new file mode 100644 index 0000000..1f21c4c --- /dev/null +++ b/test/fixtures/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 diff --git a/test/fixtures/wittle/puzzles.yml b/test/fixtures/wittle/puzzles.yml deleted file mode 100644 index 75f9eab..0000000 --- a/test/fixtures/wittle/puzzles.yml +++ /dev/null @@ -1,11 +0,0 @@ -# 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 deleted file mode 100644 index 1f21c4c..0000000 --- a/test/fixtures/wittle/scores.yml +++ /dev/null @@ -1,13 +0,0 @@ -# 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