]> git.openstreetmap.org Git - rails.git/blobdiff - test/controllers/old_nodes_controller_test.rb
Merge pull request #4536 from tomhughes/trace-size-limit
[rails.git] / test / controllers / old_nodes_controller_test.rb
index 4263077c817914cfbee4fe185ca2d310260a1f25..3f2958bd3e49ecd82d04574d5f5eec5b7ed56ab0 100644 (file)
@@ -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