From b0998224427594acda8e4e8419a945c20c062568 Mon Sep 17 00:00:00 2001 From: David Gay Date: Thu, 20 May 2021 18:39:20 -0400 Subject: Implement learned activities --- test/fixtures/learned_activities.yml | 9 +++++++++ test/models/learned_activity_test.rb | 7 +++++++ 2 files changed, 16 insertions(+) create mode 100644 test/fixtures/learned_activities.yml create mode 100644 test/models/learned_activity_test.rb (limited to 'test') diff --git a/test/fixtures/learned_activities.yml b/test/fixtures/learned_activities.yml new file mode 100644 index 0000000..d6a4245 --- /dev/null +++ b/test/fixtures/learned_activities.yml @@ -0,0 +1,9 @@ +# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + character: one + activity: one + +two: + character: two + activity: two diff --git a/test/models/learned_activity_test.rb b/test/models/learned_activity_test.rb new file mode 100644 index 0000000..ff0a9bb --- /dev/null +++ b/test/models/learned_activity_test.rb @@ -0,0 +1,7 @@ +require "test_helper" + +class LearnedActivityTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end -- cgit v1.2.3