diff options
author | David Gay <david@davidgay.org> | 2021-05-02 20:21:04 -0400 |
---|---|---|
committer | David Gay <david@davidgay.org> | 2021-05-02 20:21:04 -0400 |
commit | 2b32a88a8e9f1d0bb5055843ac987d9cb9981803 (patch) | |
tree | 19bf361b7cbb69ae493cc02d07f0fae2cf6da928 /test | |
parent | 5fe4e8f4a080e02dfc4e4adabd09d6f5c7e38f40 (diff) |
Add Activities
Diffstat (limited to 'test')
-rw-r--r-- | test/fixtures/activities.yml | 13 | ||||
-rw-r--r-- | test/models/activity_test.rb | 7 |
2 files changed, 20 insertions, 0 deletions
diff --git a/test/fixtures/activities.yml b/test/fixtures/activities.yml new file mode 100644 index 0000000..6a7ba8a --- /dev/null +++ b/test/fixtures/activities.yml @@ -0,0 +1,13 @@ +# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + gid: MyString + name: MyString + description: MyText + whatnot: + +two: + gid: MyString + name: MyString + description: MyText + whatnot: diff --git a/test/models/activity_test.rb b/test/models/activity_test.rb new file mode 100644 index 0000000..c07a8b9 --- /dev/null +++ b/test/models/activity_test.rb @@ -0,0 +1,7 @@ +require "test_helper" + +class ActivityTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end |