]> git.openstreetmap.org Git - rails.git/blobdiff - test/controllers/search_controller_test.rb
Replace fixtures with factory for way_tags
[rails.git] / test / controllers / search_controller_test.rb
index 3a490647207957b417325198df0de24e50338980..a3b862419a4b8864c6bb5b19d6af14aab117b866 100644 (file)
@@ -1,6 +1,8 @@
 require "test_helper"
 
 class SearchControllerTest < ActionController::TestCase
+  api_fixtures
+
   ##
   # test all routes which lead to this controller
   def test_routes
@@ -41,6 +43,11 @@ 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")
+    end
+    create(:way_tag, :way => current_ways(:used_way), :k => "name", :v => "Test Way")
+
     get :search_ways, :type => "test"
     assert_response :service_unavailable
     assert_equal "Searching for a key without value is currently unavailable", response.headers["Error"]