Catalyst-Plugin-UploadProgress

 view release on metacpan or  search on metacpan

t/04uploadprogress.t  view on Meta::CPAN


use FindBin;
use lib "$FindBin::Bin/lib";

BEGIN {
    unlink "$FindBin::Bin/cache.dat" if -e "$FindBin::Bin/cache.dat";
}

use Test::More;
use Catalyst::Test 'TestApp';
use HTTP::Request::Common;

eval { 
    require Catalyst::Plugin::Cache::FastMmap;
};
if ($@) {
    plan skip_all => 'Requires the Cache::FastMmap plugin for testing.';
}
else {
    plan tests => 12;
}



( run in 0.359 second using v1.01-cache-2.11-cpan-de7293f3b23 )