diff options
author | David Gay <david@davidgay.org> | 2021-05-29 17:19:56 -0400 |
---|---|---|
committer | David Gay <david@davidgay.org> | 2021-05-29 17:19:56 -0400 |
commit | aac7563767c5fbc5ef67f4d615833e7523a46df7 (patch) | |
tree | 807e708c32d6d8710bcc1b6f96862ed34b320072 /test/models | |
parent | 8f9dcbf33d5cd3222e4d8e0cfa6f72b1596b917c (diff) |
Conditions and states (boons & banes), with `quarrying_draught`
Diffstat (limited to 'test/models')
-rw-r--r-- | test/models/condition_test.rb | 7 | ||||
-rw-r--r-- | test/models/state_test.rb | 7 |
2 files changed, 14 insertions, 0 deletions
diff --git a/test/models/condition_test.rb b/test/models/condition_test.rb new file mode 100644 index 0000000..59d3e62 --- /dev/null +++ b/test/models/condition_test.rb @@ -0,0 +1,7 @@ +require "test_helper" + +class ConditionTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end diff --git a/test/models/state_test.rb b/test/models/state_test.rb new file mode 100644 index 0000000..3ac43a7 --- /dev/null +++ b/test/models/state_test.rb @@ -0,0 +1,7 @@ +require "test_helper" + +class StateTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end |