]> git.openstreetmap.org Git - rails.git/blobdiff - test/integration/cors_test.rb
Merge remote-tracking branch 'openstreetmap/pull/1553'
[rails.git] / test / integration / cors_test.rb
index f3581f6a21b0b258fabb127ef65072b50f5e728a..fdecfc256c4eb666de1e244d090365da36555ed9 100644 (file)
@@ -1,4 +1,4 @@
-require 'test_helper'
+require "test_helper"
 
 class CORSTest < ActionDispatch::IntegrationTest
   # Rails 4 adds a built-in `options` method. When we upgrade, we can remove
@@ -15,18 +15,18 @@ class CORSTest < ActionDispatch::IntegrationTest
 
   def test_api_routes_allow_cross_origin_requests
     options "/api/capabilities", nil,
-            'HTTP_ORIGIN' => "http://www.example.com",
-            'HTTP_ACCESS_CONTROL_REQUEST_METHOD' => 'GET'
+            "HTTP_ORIGIN" => "http://www.example.com",
+            "HTTP_ACCESS_CONTROL_REQUEST_METHOD" => "GET"
 
     assert_response :success
-    assert_equal "http://www.example.com", response.headers['Access-Control-Allow-Origin']
+    assert_equal "http://www.example.com", response.headers["Access-Control-Allow-Origin"]
   end
 
   def test_non_api_routes_dont_allow_cross_origin_requests
     assert_raises ActionController::RoutingError do
       options "/", nil,
-              'HTTP_ORIGIN' => "http://www.example.com",
-              'HTTP_ACCESS_CONTROL_REQUEST_METHOD' => 'GET'
+              "HTTP_ORIGIN" => "http://www.example.com",
+              "HTTP_ACCESS_CONTROL_REQUEST_METHOD" => "GET"
     end
   end
 end