summaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2007-10-08 05:56:23 +0200
committerlpsolit%gmail.com <>2007-10-08 05:56:23 +0200
commitbbd35c12bf6b886a7768c4c6d43d8dca21f549aa (patch)
treeddfc224d04529d9a832e30940275f4e49e1c5120 /t
parent49d12c8c90c1bc6c72f0b3d1324a23002e79b6d3 (diff)
downloadbugzilla-bbd35c12bf6b886a7768c4c6d43d8dca21f549aa.tar.gz
bugzilla-bbd35c12bf6b886a7768c4c6d43d8dca21f549aa.tar.xz
Bug 398838: Remove the obsolete Util::value_quote() routine - Patch by Frédéric Buclin <LpSolit@gmail.com> r=mkanat a=LpSolit
Diffstat (limited to 't')
-rw-r--r--t/007util.t5
1 files changed, 1 insertions, 4 deletions
diff --git a/t/007util.t b/t/007util.t
index 5f2c998d1..18d58148b 100644
--- a/t/007util.t
+++ b/t/007util.t
@@ -28,7 +28,7 @@ use lib 't';
use Support::Files;
BEGIN {
- use Test::More tests => 13;
+ use Test::More tests => 12;
use_ok(Bugzilla);
use_ok(Bugzilla::Util);
}
@@ -48,9 +48,6 @@ is(html_quote("<lala&>"),"&lt;lala&amp;&gt;",'html_quote');
#url_quote():
is(url_quote("<lala&>gaa\"'[]{\\"),"%3Clala%26%3Egaa%22%27%5B%5D%7B%5C",'url_quote');
-#value_quote():
-is(value_quote("<lal\na&>g\naa\"'[\n]{\\"),"&lt;lal&#013;a&amp;&gt;g&#013;aa&quot;'[&#013;]{\\",'value_quote');
-
#lsearch():
my @list = ('apple','pear','plum','<"\\%');
is(lsearch(\@list,'pear'),1,'lsearch 1');