summaryrefslogtreecommitdiffstats
path: root/querystring003.phpt
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2015-05-22 08:10:58 +0200
committerRemi Collet <fedora@famillecollet.com>2015-05-22 08:10:58 +0200
commit7bcbfb91a9e94b0336051ccf926d219489f5b800 (patch)
treee6afb3ca3f7bff794798729092b8f363b27d7be6 /querystring003.phpt
parent690f8f9a5a22e67c3fdf2cb6cf8cba30c29a748c (diff)
php-pecl-http: 2.5.0RC1
Diffstat (limited to 'querystring003.phpt')
-rw-r--r--querystring003.phpt22
1 files changed, 0 insertions, 22 deletions
diff --git a/querystring003.phpt b/querystring003.phpt
deleted file mode 100644
index a504174..0000000
--- a/querystring003.phpt
+++ /dev/null
@@ -1,22 +0,0 @@
---TEST--
-querystring offset set
---SKIPIF--
-<?php
-include "skipif.inc";
-?>
---FILE--
-<?php
-
-echo "Test\n";
-
-$qs = new http\QueryString("foo=bar&bar=baz");
-echo $qs,"\n";
-$qs["foo"] = "baz";
-echo $qs,"\n";
-?>
-===DONE===
---EXPECT--
-Test
-foo=bar&bar=baz
-foo=baz&bar=baz
-===DONE===