diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/fixtures/title_awards.yml | 9 | ||||
-rw-r--r-- | test/fixtures/titles.yml | 7 | ||||
-rw-r--r-- | test/models/title_award_test.rb | 7 | ||||
-rw-r--r-- | test/models/title_test.rb | 7 |
4 files changed, 30 insertions, 0 deletions
diff --git a/test/fixtures/title_awards.yml b/test/fixtures/title_awards.yml new file mode 100644 index 0000000..d4a8c6f --- /dev/null +++ b/test/fixtures/title_awards.yml @@ -0,0 +1,9 @@ +# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + title: one + character: one + +two: + title: two + character: two diff --git a/test/fixtures/titles.yml b/test/fixtures/titles.yml new file mode 100644 index 0000000..7d41224 --- /dev/null +++ b/test/fixtures/titles.yml @@ -0,0 +1,7 @@ +# Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + name: MyString + +two: + name: MyString diff --git a/test/models/title_award_test.rb b/test/models/title_award_test.rb new file mode 100644 index 0000000..bfbb6cd --- /dev/null +++ b/test/models/title_award_test.rb @@ -0,0 +1,7 @@ +require "test_helper" + +class TitleAwardTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end diff --git a/test/models/title_test.rb b/test/models/title_test.rb new file mode 100644 index 0000000..ce86265 --- /dev/null +++ b/test/models/title_test.rb @@ -0,0 +1,7 @@ +require "test_helper" + +class TitleTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end |