Group
Extension

Matches 10

Mojolicious-Plugin-SecurityHeader ( R/RE/RENEEB/Mojolicious-Plugin-SecurityHeader-0.07.tar.gz, RENEEB, 2018; MetaCPAN )
Mojolicious-Plugin-SecurityHeader/t/rp/invalid.t ( view source; MetaCPAN )

  $c->render(text => 'Hello Mojo!');
};

my $t = Test::Mojo->new;
$t->get_ok('/')->status_is(200)
  ->header_isnt( 'Referrer-Policy', 3.2 )
  ->header_isnt( 'Referrer-Policy', 3 )
;

done_testing();
Mojolicious-Plugin-SecurityHeader ( R/RE/RENEEB/Mojolicious-Plugin-SecurityHeader-0.07.tar.gz, RENEEB, 2018; MetaCPAN )
Mojolicious-Plugin-SecurityHeader/t/xp/invalid.t ( view source; MetaCPAN )
 $c->render(text => 'Hello Mojo!');
};

my $t = Test::Mojo->new;
$t->get_ok('/')->status_is(200)
  ->header_isnt( 'X-Xss-Protection', 3.2 )
  ->header_isnt( 'X-Xss-Protection', 3 )
;

done_testing();
Mojolicious-Plugin-SecurityHeader ( R/RE/RENEEB/Mojolicious-Plugin-SecurityHeader-0.07.tar.gz, RENEEB, 2018; MetaCPAN )
Mojolicious-Plugin-SecurityHeader/t/cto/invalid.t ( view source; MetaCPAN )
text => 'Hello Mojo!');
};

my $t = Test::Mojo->new;
$t->get_ok('/')->status_is(200)
  ->header_isnt( 'X-Content-Type-Options', 3.2 )
  ->header_isnt( 'X-Content-Type-Options', 3 )
;

done_testing();
Mojolicious-Plugin-SecurityHeader ( R/RE/RENEEB/Mojolicious-Plugin-SecurityHeader-0.07.tar.gz, RENEEB, 2018; MetaCPAN )
Mojolicious-Plugin-SecurityHeader/t/sts/invalid.t ( view source; MetaCPAN )
t = Test::Mojo->new;
$t->get_ok('/')->status_is(200)->header_isnt( 'Strict-Transport-Security', 3.2 );
$t->get_ok('/')->status_is(200)->header_isnt( 'Strict-Transport-Security', 3 );

done_testing();
Mojolicious-Plugin-SecurityHeader ( R/RE/RENEEB/Mojolicious-Plugin-SecurityHeader-0.07.tar.gz, RENEEB, 2018; MetaCPAN )
Mojolicious-Plugin-SecurityHeader/t/fo/invalid.t ( view source; MetaCPAN )

  $c->render(text => 'Hello Mojo!');
};

my $t = Test::Mojo->new;
$t->get_ok('/')->status_is(200)
  ->header_isnt( 'X-Frame-Options', 3.2 )
  ->header_isnt( 'X-Frame-Options', 3 )
;

done_testing();
Mojolicious-Plugin-SecurityHeader ( R/RE/RENEEB/Mojolicious-Plugin-SecurityHeader-0.07.tar.gz, RENEEB, 2018; MetaCPAN )
Mojolicious-Plugin-SecurityHeader/t/acma/invalid.t ( view source; MetaCPAN )
'/' => sub {
  my $c = shift;
  $c->render(text => 'Hello Mojo!');
};

my $t = Test::Mojo->new;
$t->get_ok('/')->status_is(200)
  ->header_isnt( 'Access-Control-Max-Age', 'hallo' )
;

done_testing();
Mojolicious-Plugin-SecurityHeader ( R/RE/RENEEB/Mojolicious-Plugin-SecurityHeader-0.07.tar.gz, RENEEB, 2018; MetaCPAN )
Mojolicious-Plugin-SecurityHeader/t/csp/invalid.t ( view source; MetaCPAN )
/' => sub {
  my $c = shift;
  $c->render(text => 'Hello Mojo!');
};

my $t = Test::Mojo->new;
$t->get_ok('/')->status_is(200)
  ->header_isnt( 'Content-Security-Policy', 'hallo' )
;

done_testing();
Mojolicious-Plugin-SecurityHeader ( R/RE/RENEEB/Mojolicious-Plugin-SecurityHeader-0.07.tar.gz, RENEEB, 2018; MetaCPAN )
Mojolicious-Plugin-SecurityHeader/t/acam/invalid.t ( view source; MetaCPAN )
 sub {
  my $c = shift;
  $c->render(text => 'Hello Mojo!');
};

my $t = Test::Mojo->new;
$t->get_ok('/')->status_is(200)
  ->header_isnt( 'Access-Control-Allow-Methods', 'hallo' )
;

done_testing();
Mojolicious-Plugin-SecurityHeader ( R/RE/RENEEB/Mojolicious-Plugin-SecurityHeader-0.07.tar.gz, RENEEB, 2018; MetaCPAN )
Mojolicious-Plugin-SecurityHeader/t/acac/invalid.t ( view source; MetaCPAN )
 {
  my $c = shift;
  $c->render(text => 'Hello Mojo!');
};

my $t = Test::Mojo->new;
$t->get_ok('/')->status_is(200)
  ->header_isnt( 'Access-Control-Allow-Credentials', 'hallo' )
;

done_testing();
Mojolicious-Plugin-SecurityHeader ( R/RE/RENEEB/Mojolicious-Plugin-SecurityHeader-0.07.tar.gz, RENEEB, 2018; MetaCPAN )
Mojolicious-Plugin-SecurityHeader/t/acao/invalid.t ( view source; MetaCPAN )
> sub {
  my $c = shift;
  $c->render(text => 'Hello Mojo!');
};

my $t = Test::Mojo->new;
$t->get_ok('/')->status_is(200)
  ->header_isnt( 'Access-Control-Allow-Origin', 'hallo' )
;

done_testing();

Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.