X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/a39d997cf4195d040efdbf322ca6e2775220f0b0..29cc21c5990d7aec15e3cbed6e7410373904b5ac:/test/controllers/old_nodes_controller_test.rb diff --git a/test/controllers/old_nodes_controller_test.rb b/test/controllers/old_nodes_controller_test.rb index 4263077c8..3f2958bd3 100644 --- a/test/controllers/old_nodes_controller_test.rb +++ b/test/controllers/old_nodes_controller_test.rb @@ -18,6 +18,7 @@ class OldNodesControllerTest < ActionDispatch::IntegrationTest assert_select "a[href='#{old_node_path node, 1}']", :count => 0 end assert_select ".secondary-actions a[href='#{node_version_path node, 1}']", :count => 1 + assert_select ".secondary-actions a[href='#{node_path node}']", :count => 1 assert_select ".secondary-actions a[href='#{node_history_path node}']", :count => 1 end @@ -31,6 +32,7 @@ class OldNodesControllerTest < ActionDispatch::IntegrationTest assert_select "a[href='#{old_node_path node, 1}']", :count => 0 end assert_select ".secondary-actions a[href='#{node_version_path node, 1}']", :count => 1 + assert_select ".secondary-actions a[href='#{node_path node}']", :count => 1 assert_select ".secondary-actions a[href='#{node_history_path node}']", :count => 1 assert_select ".secondary-actions a[href='#{old_node_path node, 2}']", :count => 1 @@ -42,6 +44,7 @@ class OldNodesControllerTest < ActionDispatch::IntegrationTest assert_select "a[href='#{old_node_path node, 2}']", :count => 0 end assert_select ".secondary-actions a[href='#{node_version_path node, 2}']", :count => 1 + assert_select ".secondary-actions a[href='#{node_path node}']", :count => 1 assert_select ".secondary-actions a[href='#{node_history_path node}']", :count => 1 assert_select ".secondary-actions a[href='#{old_node_path node, 1}']", :count => 1 end @@ -54,6 +57,7 @@ class OldNodesControllerTest < ActionDispatch::IntegrationTest assert_response :success assert_template "old_nodes/show" assert_template :layout => "map" + assert_select ".secondary-actions a[href='#{node_path node}']", :count => 1 assert_select ".secondary-actions a[href='#{old_node_path node, 1}']", :count => 0 assert_select ".secondary-actions a[href='#{node_version_path node, 1}']", :count => 0 end