X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/b095b59d5e0ee805e49980af80b21bd1acff1345..ab12b6161aa61463d7fbb0a9c77ae1d9ae14082a:/test/models/diary_comment_test.rb diff --git a/test/models/diary_comment_test.rb b/test/models/diary_comment_test.rb index e96c12230..908c79bfa 100644 --- a/test/models/diary_comment_test.rb +++ b/test/models/diary_comment_test.rb @@ -1,10 +1,8 @@ -require 'test_helper' +require "test_helper" class DiaryCommentTest < ActiveSupport::TestCase - api_fixtures - fixtures :diary_comments - - def test_diary_comment_count - assert_equal 4, DiaryComment.count + def test_diary_comment_exists + comment = create(:diary_comment) + assert_includes DiaryComment.all, comment end end