1 # frozen_string_literal: true
6 class DiaryCommentViewTest < ActionView::TestCase
8 diary_comment = build_stubbed(:diary_comment)
9 notification = build_stubbed(:notification, :record => diary_comment)
12 "notifications/notification",
13 :notification => notification
16 assert_dom ".web-notification" do
17 assert_dom "h2", "Diary comment"
18 assert_dom "time", "less than 1 minute ago"
19 assert_dom "blockquote", diary_comment.body