# _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # # for lib/facet/kernel/uri.rb # # Extracted Wed Jan 25 11:25:39 EST 2006 # Unit Tools Reap Test Extractor # require 'facet/kernel/uri.rb' require 'test/unit' class TCKernel < Test::Unit::TestCase def test_uri assert_equal( uri("abc?xyz"), "abc%3Fxyz" ) end def test_unuri assert_equal( unuri("abc%3Fxyz"), "abc?xyz" ) end end