1 require "application_system_test_case"
3 class IndexTest < ApplicationSystemTestCase
4 test "node included in edit link" do
7 assert_selector "#editanchor[href*='?node=#{node.id}#']"
9 find("#sidebar .btn-close").click
10 assert_no_selector "#editanchor[href*='?node=#{node.id}#']"
13 test "note included in edit link" do
14 note = create(:note_with_comments)
15 visit browse_note_path(note)
16 assert_selector "#editanchor[href*='?note=#{note.id}#']"
18 find("#sidebar .btn-close").click
19 assert_no_selector "#editanchor[href*='?note=#{note.id}#']"