summaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2005-09-07 21:05:10 +0200
committerlpsolit%gmail.com <>2005-09-07 21:05:10 +0200
commit25385f53b2dc79bf807f6fbef2f0f73491f83445 (patch)
tree96cfb0bf9255432dfb27c6de458caca8e8e3deaa /t
parente679c1864efe76002b2b202dfbaa42acbba516a0 (diff)
downloadbugzilla-25385f53b2dc79bf807f6fbef2f0f73491f83445.tar.gz
bugzilla-25385f53b2dc79bf807f6fbef2f0f73491f83445.tar.xz
Bug 302669 (2nd part): show_bug.cgi?ctype=xml should allow the option of exporting attachment data - Patch by Greg Hendricks <ghendricks@novell.com> r/a=myk
Diffstat (limited to 't')
-rw-r--r--t/004template.t1
-rw-r--r--t/008filter.t2
2 files changed, 2 insertions, 1 deletions
diff --git a/t/004template.t b/t/004template.t
index 4edb6a3ac..9cbfadf6e 100644
--- a/t/004template.t
+++ b/t/004template.t
@@ -96,6 +96,7 @@ foreach my $include_path (@include_paths) {
html_linebreak => sub { return $_; },
no_break => sub { return $_; } ,
js => sub { return $_ } ,
+ base64 => sub { return $_ } ,
inactive => [ sub { return sub { return $_; } }, 1] ,
closed => [ sub { return sub { return $_; } }, 1] ,
obsolete => [ sub { return sub { return $_; } }, 1] ,
diff --git a/t/008filter.t b/t/008filter.t
index 59d3a2bd7..61b3dc2b6 100644
--- a/t/008filter.t
+++ b/t/008filter.t
@@ -218,7 +218,7 @@ sub directive_ok {
# Things which are already filtered
# Note: If a single directive prints two things, and only one is
# filtered, we may not catch that case.
- return 1 if $directive =~ /FILTER\ (html|csv|js|url_quote|css_class_quote|
+ return 1 if $directive =~ /FILTER\ (html|csv|js|base64|url_quote|css_class_quote|
ics|quoteUrls|time|uri|xml|lower|
obsolete|inactive|closed|unitconvert|
none)/x;