Skip to content

Commit

Permalink
test tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Nov 1, 2012
1 parent e26f4eb commit 041ac12
Show file tree
Hide file tree
Showing 14 changed files with 16 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Changes
@@ -1,4 +1,7 @@

3.55 2012-11-02
- Improved tests.

3.54 2012-11-01
- Added next and previous methods to Mojo::DOM.
- Improved documentation.
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojolicious.pm
Expand Up @@ -38,7 +38,7 @@ has static => sub { Mojolicious::Static->new };
has types => sub { Mojolicious::Types->new };

our $CODENAME = 'Rainbow';
our $VERSION = '3.54';
our $VERSION = '3.55';

sub AUTOLOAD {
my $self = shift;
Expand Down
1 change: 1 addition & 0 deletions t/mojo/hypnotoad.t
Expand Up @@ -7,6 +7,7 @@ BEGIN {
}

use Test::More;

plan skip_all => 'set TEST_HYPNOTOAD to enable this test (developer only!)'
unless $ENV{TEST_HYPNOTOAD};

Expand Down
1 change: 1 addition & 0 deletions t/mojo/ioloop_ipv6.t
Expand Up @@ -5,6 +5,7 @@ BEGIN { $ENV{MOJO_REACTOR} = 'Mojo::Reactor::Poll' }

use Test::More;
use Mojo::IOLoop::Server;

plan skip_all => 'set TEST_IPV6 to enable this test (developer only!)'
unless $ENV{TEST_IPV6};
plan skip_all => 'IO::Socket::IP 0.16 required for this test!'
Expand Down
1 change: 1 addition & 0 deletions t/mojo/ioloop_tls.t
Expand Up @@ -8,6 +8,7 @@ BEGIN {

use Test::More;
use Mojo::IOLoop::Server;

plan skip_all => 'set TEST_TLS to enable this test (developer only!)'
unless $ENV{TEST_TLS};
plan skip_all => 'IO::Socket::SSL 1.75 required for this test!'
Expand Down
1 change: 1 addition & 0 deletions t/mojo/morbo.t
Expand Up @@ -7,6 +7,7 @@ BEGIN {
}

use Test::More;

plan skip_all => 'set TEST_MORBO to enable this test (developer only!)'
unless $ENV{TEST_MORBO};

Expand Down
1 change: 1 addition & 0 deletions t/mojo/reactor_ev.t
Expand Up @@ -4,6 +4,7 @@ use Mojo::Base -strict;
BEGIN { $ENV{MOJO_NO_IPV6} = 1 }

use Test::More;

plan skip_all => 'set TEST_EV to enable this test (developer only!)'
unless $ENV{TEST_EV};
plan skip_all => 'EV 4.0 required for this test!' unless eval 'use EV 4.0; 1';
Expand Down
1 change: 1 addition & 0 deletions t/mojo/user_agent_online.t
Expand Up @@ -8,6 +8,7 @@ BEGIN {

use Test::More;
use Mojo::IOLoop::Server;

plan skip_all => 'set TEST_ONLINE to enable this test (developer only!)'
unless $ENV{TEST_ONLINE};
plan skip_all => 'IO::Socket::IP 0.16 required for this test!'
Expand Down
1 change: 1 addition & 0 deletions t/mojo/user_agent_tls.t
Expand Up @@ -8,6 +8,7 @@ BEGIN {

use Test::More;
use Mojo::IOLoop::Server;

plan skip_all => 'set TEST_TLS to enable this test (developer only!)'
unless $ENV{TEST_TLS};
plan skip_all => 'IO::Socket::SSL 1.75 required for this test!'
Expand Down
1 change: 1 addition & 0 deletions t/mojo/websocket_proxy_tls.t
Expand Up @@ -8,6 +8,7 @@ BEGIN {

use Test::More;
use Mojo::IOLoop::Server;

plan skip_all => 'set TEST_TLS to enable this test (developer only!)'
unless $ENV{TEST_TLS};
plan skip_all => 'IO::Socket::SSL 1.75 required for this test!'
Expand Down
1 change: 1 addition & 0 deletions t/mojolicious/caching_lite_app.t
Expand Up @@ -7,6 +7,7 @@ BEGIN {
}

use Test::More;

plan skip_all => 'set TEST_CACHING to enable this test (developer only!)'
unless $ENV{TEST_CACHING};

Expand Down
1 change: 1 addition & 0 deletions t/mojolicious/tls_lite_app.t
Expand Up @@ -8,6 +8,7 @@ BEGIN {

use Test::More;
use Mojo::IOLoop::Server;

plan skip_all => 'set TEST_TLS to enable this test (developer only!)'
unless $ENV{TEST_TLS};
plan skip_all => 'IO::Socket::SSL 1.75 required for this test!'
Expand Down
1 change: 1 addition & 0 deletions t/pod.t
@@ -1,6 +1,7 @@
use Mojo::Base -strict;

use Test::More;

plan skip_all => 'set TEST_POD to enable this test (developer only!)'
unless $ENV{TEST_POD};
plan skip_all => 'Test::Pod 1.14 required for this test!'
Expand Down
1 change: 1 addition & 0 deletions t/pod_coverage.t
@@ -1,6 +1,7 @@
use Mojo::Base -strict;

use Test::More;

plan skip_all => 'set TEST_POD to enable this test (developer only!)'
unless $ENV{TEST_POD};
plan skip_all => 'Test::Pod::Coverage 1.04 required for this test!'
Expand Down

0 comments on commit 041ac12

Please sign in to comment.