diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/fixtures/monsters.yml | 11 | ||||
-rw-r--r-- | test/models/monster_test.rb | 7 |
2 files changed, 18 insertions, 0 deletions
diff --git a/test/fixtures/monsters.yml b/test/fixtures/monsters.yml new file mode 100644 index 0000000..ec30753 --- /dev/null +++ b/test/fixtures/monsters.yml @@ -0,0 +1,11 @@ +# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + name: MyString + description: MyText + whatnot: + +two: + name: MyString + description: MyText + whatnot: diff --git a/test/models/monster_test.rb b/test/models/monster_test.rb new file mode 100644 index 0000000..f57dbbd --- /dev/null +++ b/test/models/monster_test.rb @@ -0,0 +1,7 @@ +require "test_helper" + +class MonsterTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end |