diff options
author | David Gay <david@davidgay.org> | 2021-05-02 16:15:55 -0400 |
---|---|---|
committer | David Gay <david@davidgay.org> | 2021-05-02 16:15:55 -0400 |
commit | 7997e112fbc67eef309bb3969ad41f90a8bfbc89 (patch) | |
tree | 6da48af487ae581365fcc0d6d8fa6894e3724506 /test | |
parent | 2b3422be0a68b18125bb471bef7adcc32cd3b486 (diff) |
Add skills
Diffstat (limited to 'test')
-rw-r--r-- | test/fixtures/skills.yml | 9 | ||||
-rw-r--r-- | test/models/skill_test.rb | 7 |
2 files changed, 16 insertions, 0 deletions
diff --git a/test/fixtures/skills.yml b/test/fixtures/skills.yml new file mode 100644 index 0000000..382f6d8 --- /dev/null +++ b/test/fixtures/skills.yml @@ -0,0 +1,9 @@ +# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + name: MyString + description: MyText + +two: + name: MyString + description: MyText diff --git a/test/models/skill_test.rb b/test/models/skill_test.rb new file mode 100644 index 0000000..c36050f --- /dev/null +++ b/test/models/skill_test.rb @@ -0,0 +1,7 @@ +require "test_helper" + +class SkillTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end |