diff options
author | David Gay <david@davidgay.org> | 2021-06-02 22:15:02 -0400 |
---|---|---|
committer | David Gay <david@davidgay.org> | 2021-06-02 22:15:02 -0400 |
commit | 4c96893a114059dc4e748307c6d046ec1faa778f (patch) | |
tree | 10e3af95e7a3749e6bd0d1ab63fffebf5b567258 /test | |
parent | 6ec57509c6f1d44fb80a1cb2ae020b8a033dd370 (diff) |
Magiculture
Diffstat (limited to 'test')
-rw-r--r-- | test/fixtures/hearth_plantings.yml | 9 | ||||
-rw-r--r-- | test/models/hearth_planting_test.rb | 7 |
2 files changed, 16 insertions, 0 deletions
diff --git a/test/fixtures/hearth_plantings.yml b/test/fixtures/hearth_plantings.yml new file mode 100644 index 0000000..3bdbb5d --- /dev/null +++ b/test/fixtures/hearth_plantings.yml @@ -0,0 +1,9 @@ +# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + hearth: one + item: one + +two: + hearth: two + item: two diff --git a/test/models/hearth_planting_test.rb b/test/models/hearth_planting_test.rb new file mode 100644 index 0000000..ccfbb79 --- /dev/null +++ b/test/models/hearth_planting_test.rb @@ -0,0 +1,7 @@ +require "test_helper" + +class HearthPlantingTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end |