File: fetch-all.t

package info (click to toggle)
libmojolicious-plugin-assetpack-perl 2.15-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,888 kB
  • sloc: perl: 1,503; javascript: 52; makefile: 8; sh: 2
file content (20 lines) | stat: -rw-r--r-- 618 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
use lib '.';
use t::Helper;

plan skip_all => 'TEST_ONLINE=1' unless $ENV{TEST_ONLINE} or -e '.test-everything';

my $t = t::Helper->t(pipes => [qw(Css Fetch)]);
$t->app->asset->process('app.css' => 'http://harvesthq.github.io/chosen/chosen.css');

$t->get_ok('/')->status_is(200);
$t->get_ok($t->tx->res->dom->at('link')->{href})->status_is(200)
  ->content_like(qr{\Q../../\Easset/\w+/chosen-sprite\.png["']\)})
  ->content_like(qr{\Q../../\Easset/\w+/chosen-sprite\@2x\.png["']\)})
  ->content_unlike(qr{\Qurl(['"]chosen-sprite.png['"])\E});

done_testing;

__DATA__
@@ index.html.ep
%= asset 'app.css'
Hello world