diff options
Diffstat (limited to 't')
-rw-r--r-- | t/007util.t | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/t/007util.t b/t/007util.t index af36e94ac..742c2b2d2 100644 --- a/t/007util.t +++ b/t/007util.t @@ -26,7 +26,7 @@ use lib 't'; use Support::Files; -use Test::More tests => 16; +use Test::More tests => 13; BEGIN { use_ok(Bugzilla); @@ -50,12 +50,6 @@ is(html_quote("<lala&@>"),"<lala&@>",'html_quote'); #url_quote(): is(url_quote("<lala&>gaa\"'[]{\\"),"%3Clala%26%3Egaa%22%27%5B%5D%7B%5C",'url_quote'); -#lsearch(): -my @list = ('apple','pear','plum','<"\\%'); -is(lsearch(\@list,'pear'),1,'lsearch 1'); -is(lsearch(\@list,'<"\\%'),3,'lsearch 2'); -is(lsearch(\@list,'kiwi'),-1,'lsearch 3 (missing item)'); - #trim(): is(trim(" fg<*\$%>+=~~ "),'fg<*$%>+=~~','trim()'); |