summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDavid Gay <david@davidgay.org>2021-06-15 21:52:49 -0400
committerDavid Gay <david@davidgay.org>2021-06-15 21:54:32 -0400
commit637adf2963f174c3e3e3d6cf9efbff314e306f3e (patch)
tree4e4812f66848a751b12adda81f7c500c0a689116 /test
parentf637f622af2d9b891271344ef23402c41419b3fe (diff)
MonsterKills and bestiary view
Diffstat (limited to 'test')
-rw-r--r--test/fixtures/monster_kills.yml11
-rw-r--r--test/models/monster_kill_test.rb7
2 files changed, 18 insertions, 0 deletions
diff --git a/test/fixtures/monster_kills.yml b/test/fixtures/monster_kills.yml
new file mode 100644
index 0000000..776b079
--- /dev/null
+++ b/test/fixtures/monster_kills.yml
@@ -0,0 +1,11 @@
+# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
+
+one:
+ monster: one
+ character: one
+ quantity:
+
+two:
+ monster: two
+ character: two
+ quantity:
diff --git a/test/models/monster_kill_test.rb b/test/models/monster_kill_test.rb
new file mode 100644
index 0000000..aef80ac
--- /dev/null
+++ b/test/models/monster_kill_test.rb
@@ -0,0 +1,7 @@
+require "test_helper"
+
+class MonsterKillTest < ActiveSupport::TestCase
+ # test "the truth" do
+ # assert true
+ # end
+end