提交 160af194 编写于 作者: J Jeremy Kemper

Routing: improve static segment test coverage. #7117 [Kevin Clark]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6979 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
上级 a308ff0c
...@@ -599,18 +599,18 @@ def test_interpolation_statement ...@@ -599,18 +599,18 @@ def test_interpolation_statement
end end
class StaticSegmentTest < Test::Unit::TestCase class StaticSegmentTest < Test::Unit::TestCase
def test_interpolation_chunk_should_respect_raw def test_interpolation_chunk_should_respect_raw
s = ROUTING::StaticSegment.new s = ROUTING::StaticSegment.new
s.value = 'Hello/World' s.value = 'Hello World'
assert ! s.raw? assert ! s.raw?
assert_equal 'Hello/World', CGI.unescape(s.interpolation_chunk) assert_equal 'Hello%20World', s.interpolation_chunk
s.raw = true s.raw = true
assert s.raw? assert s.raw?
assert_equal 'Hello/World', s.interpolation_chunk assert_equal 'Hello World', s.interpolation_chunk
end end
def test_regexp_chunk_should_escape_specials def test_regexp_chunk_should_escape_specials
s = ROUTING::StaticSegment.new s = ROUTING::StaticSegment.new
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册