diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/fixtures/character_skills.yml | 11 | ||||
-rw-r--r-- | test/models/character_skill_test.rb | 7 |
2 files changed, 18 insertions, 0 deletions
diff --git a/test/fixtures/character_skills.yml b/test/fixtures/character_skills.yml new file mode 100644 index 0000000..16d363c --- /dev/null +++ b/test/fixtures/character_skills.yml @@ -0,0 +1,11 @@ +# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + character: one + skill: one + xp: + +two: + character: two + skill: two + xp: diff --git a/test/models/character_skill_test.rb b/test/models/character_skill_test.rb new file mode 100644 index 0000000..a31b736 --- /dev/null +++ b/test/models/character_skill_test.rb @@ -0,0 +1,7 @@ +require "test_helper" + +class CharacterSkillTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end |