mirror of
https://github.com/github/rails.git
synced 2026-02-08 13:15:23 -05:00
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
This commit is contained in:
@@ -599,18 +599,18 @@ class SegmentTest < Test::Unit::TestCase
|
||||
end
|
||||
|
||||
class StaticSegmentTest < Test::Unit::TestCase
|
||||
|
||||
|
||||
def test_interpolation_chunk_should_respect_raw
|
||||
s = ROUTING::StaticSegment.new
|
||||
s.value = 'Hello/World'
|
||||
s.value = 'Hello World'
|
||||
assert ! s.raw?
|
||||
assert_equal 'Hello/World', CGI.unescape(s.interpolation_chunk)
|
||||
|
||||
assert_equal 'Hello%20World', s.interpolation_chunk
|
||||
|
||||
s.raw = true
|
||||
assert s.raw?
|
||||
assert_equal 'Hello/World', s.interpolation_chunk
|
||||
assert_equal 'Hello World', s.interpolation_chunk
|
||||
end
|
||||
|
||||
|
||||
def test_regexp_chunk_should_escape_specials
|
||||
s = ROUTING::StaticSegment.new
|
||||
|
||||
|
||||
Reference in New Issue
Block a user