RT-Extension-AddAttachmentsFromTransactions
view release on metacpan or search on metacpan
xt/00-mason-syntax.t view on Meta::CPAN
use File::Find;
find( {
no_chdir => 1,
wanted => sub {
return if /(?:\.(?:jpe?g|png|gif|rej)|\~)$/i;
return if m{/\.[^/]+\.sw[op]$}; # vim swap files
return unless -f $_;
local ($@);
ok( eval { compile_file($_) }, "Compiled $File::Find::name ok: $@");
},
}, RT::Test::get_relocatable_dir('../html'));
use HTML::Mason;
use HTML::Mason::Compiler;
use HTML::Mason::Compiler::ToObject;
BEGIN { require RT::Test; }
sub compile_file {
my $file = shift;
my $text = Encode::decode("UTF-8", RT::Test->file_content($file));
( run in 1.397 second using v1.01-cache-2.11-cpan-71847e10f99 )