X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/3ef6fa4aa94676e2544284ddff114ae6910992cc..938786e1ee6520d705ed09524d8d3f4d8f875791:/test/controllers/search_controller_test.rb diff --git a/test/controllers/search_controller_test.rb b/test/controllers/search_controller_test.rb index 2e835a587..fd3d162d3 100644 --- a/test/controllers/search_controller_test.rb +++ b/test/controllers/search_controller_test.rb @@ -43,10 +43,14 @@ class SearchControllerTest < ActionController::TestCase ## # test searching ways def test_search_ways - [:visible_way, :invisible_way, :used_way].each do |way| - create(:way_tag, :way => current_ways(way), :k => "test", :v => "yes") + first_way = create(:way_with_nodes, :nodes_count => 2) + deleted_way = create(:way_with_nodes, :deleted, :nodes_count => 2) + third_way = create(:way_with_nodes, :nodes_count => 2) + + [first_way, deleted_way, third_way].each do |way| + create(:way_tag, :way => way, :k => "test", :v => "yes") end - create(:way_tag, :way => current_ways(:used_way), :k => "name", :v => "Test Way") + create(:way_tag, :way => third_way, :k => "name", :v => "Test Way") get :search_ways, :type => "test" assert_response :service_unavailable