summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorChristian A. Weber2017-08-21 18:18:57 +0200
committerChristian A. Weber2017-08-21 18:18:57 +0200
commit2d2f6da0c0871059a454f3c05c537ab917ad876f (patch)
treea3d16861e5e9bb2ccc7f8ae4553b160e00328ede /tests
parent34a0745e18910acd7f90a19dbd08ff03de2456bc (diff)
downloaditools-2d2f6da0c0871059a454f3c05c537ab917ad876f.tar.gz
itools-2d2f6da0c0871059a454f3c05c537ab917ad876f.tar.bz2
itools-2d2f6da0c0871059a454f3c05c537ab917ad876f.zip
fix multiple args in base, add documentation
Diffstat (limited to 'tests')
-rwxr-xr-xtests/it_html.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/it_html.t b/tests/it_html.t
index 2291c54..77c441e 100755
--- a/tests/it_html.t
+++ b/tests/it_html.t
@@ -190,8 +190,8 @@ is(
);
is(
- U("/foo.html?bar=qux", array('bar' => "baz")),
- '/foo.html?bar=baz',
+ U("/foo.html?a=b&bar=qux&c=d", array('bar' => "baz")),
+ '/foo.html?a=b&bar=baz&c=d',
'U() args override get params in base url'
);