Merge branch '2411-check-copyright'
[arvados.git] / services / api / test / integration / errors_test.rb
index 3a58e4840bb20f54beac9d5d39eb319e9188d8ee..2ef85bc0af548a18019bd4caf49d2b9c252a93c1 100644 (file)
@@ -1,3 +1,7 @@
+# Copyright (C) The Arvados Authors. All rights reserved.
+#
+# SPDX-License-Identifier: AGPL-3.0
+
 require 'test_helper'
 
 class ErrorsTest < ActionDispatch::IntegrationTest
@@ -8,7 +12,7 @@ class ErrorsTest < ActionDispatch::IntegrationTest
       get path, {:format => :json}, auth(:active)
       assert_nil assigns(:objects)
       assert_nil assigns(:object)
-      assert_not_nil jresponse['errors']
+      assert_not_nil json_response['errors']
       assert_response 404
     end
   end
@@ -19,7 +23,7 @@ class ErrorsTest < ActionDispatch::IntegrationTest
       # Generally, new routes should appear under /arvados/v1/. If
       # they appear elsewhere, that might have been caused by default
       # rails generator behavior that we don't want.
-      assert_match(/^\/(|\*a|arvados\/v1\/.*|auth\/.*|login|logout|discovery\/.*|static\/.*|themes\/.*)(\(\.:format\))?$/,
+      assert_match(/^\/(|\*a|arvados\/v1\/.*|auth\/.*|login|logout|database\/reset|discovery\/.*|static\/.*|themes\/.*|assets)(\(\.:format\))?$/,
                    route.path.spec.to_s,
                    "Unexpected new route: #{route.path.spec}")
     end