Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
disable some more tests on Windows with older Perl versions
  • Loading branch information
kraih committed Oct 1, 2011
1 parent 4410778 commit d5cf2a1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions Changes
Expand Up @@ -2,6 +2,7 @@ This file documents the revision history for Perl extension Mojolicious.

2.0 2011-10-01 00:00:00
- Code name "Leaf Fluttering In Wind", this is a major release.
- Disabled some more tests on Windows with older Perl versions.
- Improved message parser performance slightly.
- Fixed small formatting bug in Mojo::Headers.

Expand Down
2 changes: 2 additions & 0 deletions t/mojo/websocket.t
Expand Up @@ -12,6 +12,8 @@ use Test::More;
plan skip_all => 'Perl 5.10 required for this test!' unless $] >= 5.010;
plan skip_all => 'This test does not work on some older versions of FreeBSD!'
if $^O =~ /freebsd/;
plan skip_all => 'Perl 5.14 required for this test on Windows!'
if ($^O eq 'MSWin32' || $^O =~ /cygwin/) && $] < 5.014;
plan tests => 42;

# "I can't believe it! Reading and writing actually paid off!"
Expand Down
5 changes: 4 additions & 1 deletion t/mojolicious/websocket_lite_app.t
Expand Up @@ -11,7 +11,10 @@ BEGIN {

# "Oh, dear. She’s stuck in an infinite loop and he’s an idiot.
# Well, that’s love for you."
use Test::More tests => 78;
use Test::More;
plan skip_all => 'Perl 5.14 required for this test on Windows!'
if ($^O eq 'MSWin32' || $^O =~ /cygwin/) && $] < 5.014;
plan tests => 78;

# "Your mistletoe is no match for my *tow* missile."
use Mojo::ByteStream 'b';
Expand Down

0 comments on commit d5cf2a1

Please sign in to comment.