From 2c8c227493509175fcdbcba3e6a85f8b954a169e Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Sat, 15 Jan 2022 12:10:26 -0500 Subject: init --- test/fixtures/files/.keep | 0 test/fixtures/machines.yml | 9 +++++++++ test/fixtures/players.yml | 11 +++++++++++ 3 files changed, 20 insertions(+) create mode 100644 test/fixtures/files/.keep create mode 100644 test/fixtures/machines.yml create mode 100644 test/fixtures/players.yml (limited to 'test/fixtures') diff --git a/test/fixtures/files/.keep b/test/fixtures/files/.keep new file mode 100644 index 0000000..e69de29 diff --git a/test/fixtures/machines.yml b/test/fixtures/machines.yml new file mode 100644 index 0000000..71f327c --- /dev/null +++ b/test/fixtures/machines.yml @@ -0,0 +1,9 @@ +# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + name: MyString + edition: MyString + +two: + name: MyString + edition: MyString diff --git a/test/fixtures/players.yml b/test/fixtures/players.yml new file mode 100644 index 0000000..61a7cf6 --- /dev/null +++ b/test/fixtures/players.yml @@ -0,0 +1,11 @@ +# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + name: MyString + paid: false + strikes: 1 + +two: + name: MyString + paid: false + strikes: 1 -- cgit 1.4.1