diff options
author | David Gay <david@davidgay.org> | 2021-05-18 18:16:04 -0400 |
---|---|---|
committer | David Gay <david@davidgay.org> | 2021-05-18 18:16:04 -0400 |
commit | 4a6c06eb681575dbf1ee58d3b1f667e79051b1e2 (patch) | |
tree | 194a555305ec8c12271160a2c7ccf3087f16cd41 /test | |
parent | 25c499ae942086b460b886e3d79dc5a55e5f1214 (diff) |
Hearths, HearthAmenities, and BuiltHearthAmenities
Diffstat (limited to 'test')
-rw-r--r-- | test/fixtures/built_hearth_amenities.yml | 11 | ||||
-rw-r--r-- | test/fixtures/hearth_amenities.yml | 13 | ||||
-rw-r--r-- | test/fixtures/hearths.yml | 7 | ||||
-rw-r--r-- | test/models/built_hearth_amenity_test.rb | 7 | ||||
-rw-r--r-- | test/models/hearth_amenity_test.rb | 7 | ||||
-rw-r--r-- | test/models/hearth_test.rb | 7 |
6 files changed, 52 insertions, 0 deletions
diff --git a/test/fixtures/built_hearth_amenities.yml b/test/fixtures/built_hearth_amenities.yml new file mode 100644 index 0000000..fa9ee9a --- /dev/null +++ b/test/fixtures/built_hearth_amenities.yml @@ -0,0 +1,11 @@ +# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + hearth: one + hearth_amenity: one + level: 1 + +two: + hearth: two + hearth_amenity: two + level: 1 diff --git a/test/fixtures/hearth_amenities.yml b/test/fixtures/hearth_amenities.yml new file mode 100644 index 0000000..d6aef5c --- /dev/null +++ b/test/fixtures/hearth_amenities.yml @@ -0,0 +1,13 @@ +# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + gid: MyString + name: MyString + description: MyText + build_data: + +two: + gid: MyString + name: MyString + description: MyText + build_data: diff --git a/test/fixtures/hearths.yml b/test/fixtures/hearths.yml new file mode 100644 index 0000000..c8cea5e --- /dev/null +++ b/test/fixtures/hearths.yml @@ -0,0 +1,7 @@ +# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + character: one + +two: + character: two diff --git a/test/models/built_hearth_amenity_test.rb b/test/models/built_hearth_amenity_test.rb new file mode 100644 index 0000000..0aad38f --- /dev/null +++ b/test/models/built_hearth_amenity_test.rb @@ -0,0 +1,7 @@ +require "test_helper" + +class BuiltHearthAmenityTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end diff --git a/test/models/hearth_amenity_test.rb b/test/models/hearth_amenity_test.rb new file mode 100644 index 0000000..895a1d6 --- /dev/null +++ b/test/models/hearth_amenity_test.rb @@ -0,0 +1,7 @@ +require "test_helper" + +class HearthAmenityTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end diff --git a/test/models/hearth_test.rb b/test/models/hearth_test.rb new file mode 100644 index 0000000..16dbac0 --- /dev/null +++ b/test/models/hearth_test.rb @@ -0,0 +1,7 @@ +require "test_helper" + +class HearthTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end |