diff options
author | Akira Matsuda <ronnie@dio.jp> | 2017-07-12 19:48:31 +0900 |
---|---|---|
committer | Akira Matsuda <ronnie@dio.jp> | 2017-07-12 19:48:31 +0900 |
commit | 03925dc26a747075ff37660d1f0a060a8178bf66 (patch) | |
tree | 8f7cdc99966bed299c6ad1de4377c620d5461a85 /actionpack/test/journey | |
parent | e319b01de8d42e1c8dd511d882b988121c81604f (diff) | |
download | rails-03925dc26a747075ff37660d1f0a060a8178bf66.tar.gz rails-03925dc26a747075ff37660d1f0a060a8178bf66.tar.bz2 rails-03925dc26a747075ff37660d1f0a060a8178bf66.zip |
normalize_path used to be nil tolerant
fixes a regression introduced at 8607c25ba7810573733d9b37d0015154ba059f5e
Diffstat (limited to 'actionpack/test/journey')
-rw-r--r-- | actionpack/test/journey/router/utils_test.rb | 4 |
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 |