Simplify remaining link_to ... user_path in views
This commit is contained in:
parent
0dc86d6cd4
commit
b8f5a495f2
12 changed files with 26 additions and 11 deletions
|
@ -42,10 +42,12 @@ class NotesControllerTest < ActionDispatch::IntegrationTest
|
|||
|
||||
get user_notes_path(first_user)
|
||||
assert_response :success
|
||||
assert_select ".content-heading a[href='#{user_path first_user}']", :text => first_user.display_name
|
||||
assert_select "table.note_list tbody tr", :count => 1
|
||||
|
||||
get user_notes_path(second_user)
|
||||
assert_response :success
|
||||
assert_select ".content-heading a[href='#{user_path second_user}']", :text => second_user.display_name
|
||||
assert_select "table.note_list tbody tr", :count => 1
|
||||
|
||||
get user_notes_path("non-existent")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue