X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/a0a269b206ed1f1ca096b17eee35815091cdbfc5..8f1ffeb5c8de75a6e1434986665808781ebcc22a:/test/controllers/old_relations_controller_test.rb diff --git a/test/controllers/old_relations_controller_test.rb b/test/controllers/old_relations_controller_test.rb index 5b7a67bf0..311e5958a 100644 --- a/test/controllers/old_relations_controller_test.rb +++ b/test/controllers/old_relations_controller_test.rb @@ -18,6 +18,7 @@ class OldRelationsControllerTest < ActionDispatch::IntegrationTest assert_select "a[href='#{old_relation_path relation, 1}']", :count => 0 end assert_select ".secondary-actions a[href='#{relation_version_path relation, 1}']", :count => 1 + assert_select ".secondary-actions a[href='#{relation_path relation}']", :count => 1 assert_select ".secondary-actions a[href='#{relation_history_path relation}']", :count => 1 end @@ -31,6 +32,7 @@ class OldRelationsControllerTest < ActionDispatch::IntegrationTest assert_select "a[href='#{old_relation_path relation, 1}']", :count => 0 end assert_select ".secondary-actions a[href='#{relation_version_path relation, 1}']", :count => 1 + assert_select ".secondary-actions a[href='#{relation_path relation}']", :count => 1 assert_select ".secondary-actions a[href='#{relation_history_path relation}']", :count => 1 assert_select ".secondary-actions a[href='#{old_relation_path relation, 2}']", :count => 1 @@ -42,6 +44,7 @@ class OldRelationsControllerTest < ActionDispatch::IntegrationTest assert_select "a[href='#{old_relation_path relation, 2}']", :count => 0 end assert_select ".secondary-actions a[href='#{relation_version_path relation, 2}']", :count => 1 + assert_select ".secondary-actions a[href='#{relation_path relation}']", :count => 1 assert_select ".secondary-actions a[href='#{relation_history_path relation}']", :count => 1 assert_select ".secondary-actions a[href='#{old_relation_path relation, 1}']", :count => 1 end @@ -63,6 +66,7 @@ class OldRelationsControllerTest < ActionDispatch::IntegrationTest assert_response :success assert_template "old_relations/show" assert_template :layout => "map" + assert_select ".secondary-actions a[href='#{relation_path relation}']", :count => 1 assert_select ".secondary-actions a[href='#{old_relation_path relation, 1}']", :count => 0 assert_select ".secondary-actions a[href='#{relation_version_path relation, 1}']", :count => 0 end