aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/journey/router
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/test/journey/router')
-rw-r--r--actionpack/test/journey/router/utils_test.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/actionpack/test/journey/router/utils_test.rb b/actionpack/test/journey/router/utils_test.rb
index 08268782d9..646563f7ab 100644
--- a/actionpack/test/journey/router/utils_test.rb
+++ b/actionpack/test/journey/router/utils_test.rb
@@ -38,6 +38,10 @@ module ActionDispatch
path = "/foo%AAbar%AAbaz".b
assert_equal Encoding::ASCII_8BIT, Utils.normalize_path(path).encoding
end
+
+ def test_normalize_path_with_nil
+ assert_equal '/', Utils.normalize_path(nil)
+ end
end
end
end