diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/fixtures/conditions.yml | 11 | ||||
-rw-r--r-- | test/fixtures/states.yml | 9 | ||||
-rw-r--r-- | test/models/condition_test.rb | 7 | ||||
-rw-r--r-- | test/models/state_test.rb | 7 |
4 files changed, 34 insertions, 0 deletions
diff --git a/test/fixtures/conditions.yml b/test/fixtures/conditions.yml new file mode 100644 index 0000000..3bcd27d --- /dev/null +++ b/test/fixtures/conditions.yml @@ -0,0 +1,11 @@ +# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + name: MyString + descriptions: MyText + whatnot: + +two: + name: MyString + descriptions: MyText + whatnot: diff --git a/test/fixtures/states.yml b/test/fixtures/states.yml new file mode 100644 index 0000000..8352bf6 --- /dev/null +++ b/test/fixtures/states.yml @@ -0,0 +1,9 @@ +# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + character: one + condition: one + +two: + character: two + condition: two 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 |