aboutsummaryrefslogtreecommitdiff
path: root/test/urltest.lua
diff options
context:
space:
mode:
authorDiego Nehab <diego@tecgraf.puc-rio.br>2004-02-04 14:29:11 +0000
committerDiego Nehab <diego@tecgraf.puc-rio.br>2004-02-04 14:29:11 +0000
commit0b2542d1a61fc5425ff65ab3dbf7ba7de174763f (patch)
tree8a6188e11db0c9ef6891c31e8a1bebca050b23b2 /test/urltest.lua
parentf67864f86c7d703325e86b14d0ba33992c52891b (diff)
downloadluasocket-0b2542d1a61fc5425ff65ab3dbf7ba7de174763f.tar.gz
luasocket-0b2542d1a61fc5425ff65ab3dbf7ba7de174763f.tar.bz2
luasocket-0b2542d1a61fc5425ff65ab3dbf7ba7de174763f.zip
Worked on the manual.
Implemented stuffing (needs test) Added cddb and qp examples.
Diffstat (limited to '')
-rw-r--r--test/urltest.lua2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/urltest.lua b/test/urltest.lua
index 7b1f0c0..990a3e5 100644
--- a/test/urltest.lua
+++ b/test/urltest.lua
@@ -35,8 +35,6 @@ local check_parse_path = function(path, expect)
35 for i = 1, math.max(table.getn(parsed), table.getn(expect)) do 35 for i = 1, math.max(table.getn(parsed), table.getn(expect)) do
36 if parsed[i] ~= expect[i] then 36 if parsed[i] ~= expect[i] then
37 print(path) 37 print(path)
38 write("segment: ", i, " = '", Code.hexa(tostring(parsed[i])),
39 "' but expected '", Code.hexa(tostring(expect[i])), "'\n")
40 exit() 38 exit()
41 end 39 end
42 end 40 end