1 require "application_system_test_case"
3 class NoteCommentsTest < ApplicationSystemTestCase
5 note = create(:note_with_comments)
6 sign_in_as(create(:user))
9 assert_button "Resolve"
10 assert_button "Comment", :disabled => true
12 fill_in "text", :with => "Some text"
14 assert_button "Comment & Resolve"
15 assert_button "Comment"