From 03925dc26a747075ff37660d1f0a060a8178bf66 Mon Sep 17 00:00:00 2001 From: Akira Matsuda Date: Wed, 12 Jul 2017 19:48:31 +0900 Subject: normalize_path used to be nil tolerant fixes a regression introduced at 8607c25ba7810573733d9b37d0015154ba059f5e --- actionpack/test/journey/router/utils_test.rb | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'actionpack/test/journey') 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 -- cgit v1.2.3