X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/54dec279495bdd91b841f709f817234aa943fd21..407a5f218ca3e2bae6fdd2b8c06a73388d490ddf:/test/controllers/ways_controller_test.rb diff --git a/test/controllers/ways_controller_test.rb b/test/controllers/ways_controller_test.rb index 6c3c5a8a3..e198f7cf6 100644 --- a/test/controllers/ways_controller_test.rb +++ b/test/controllers/ways_controller_test.rb @@ -28,4 +28,12 @@ class WaysControllerTest < ActionDispatch::IntegrationTest assert_select ".secondary-actions a[href='#{old_way_path way, 1}']", :count => 1 assert_select ".secondary-actions a[href='#{old_way_path way, 2}']", :count => 1 end + + def test_show_relation_member + member = create(:way) + relation = create(:relation) + create(:relation_member, :relation => relation, :member => member) + sidebar_browse_check :way_path, member.id, "browse/feature" + assert_select "a[href='#{relation_path relation}']", :count => 1 + end end