Simplify changeset/element-related link_to calls

This commit is contained in:
Anton Khorev 2024-03-16 18:36:33 +03:00
parent 56600b2931
commit 0dae690c06
8 changed files with 21 additions and 11 deletions

View file

@ -266,6 +266,7 @@ class ChangesetsControllerTest < ActionDispatch::IntegrationTest
assert_dom "p", :text => "tested-changeset-comment"
assert_dom "li#c#{changeset_comment.id}" do
assert_dom "> small", :text => /^Comment from #{commenting_user.display_name}/
assert_dom "a[href='#{user_path(commenting_user)}']"
end
end
@ -316,6 +317,15 @@ class ChangesetsControllerTest < ActionDispatch::IntegrationTest
end
end
def test_show_adjacent_changesets
user = create(:user)
changesets = create_list(:changeset, 3, :user => user)
sidebar_browse_check :changeset_path, changesets[1].id, "changesets/show"
assert_dom "a[href='#{changeset_path changesets[0]}']", :count => 1
assert_dom "a[href='#{changeset_path changesets[2]}']", :count => 1
end
##
# This should display the last 20 non-empty changesets
def test_feed