Skip to content

Commit

Permalink
fixed EV test
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Mar 9, 2012
1 parent 37da984 commit 50e3484
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Changes
@@ -1,6 +1,6 @@
This file documents the revision history for Perl extension Mojolicious.

2.58 2012-03-08 00:00:00
2.58 2012-03-09 00:00:00
- Added support for MOJO_LISTEN environment variable.
- Removed listen attribute from Mojo::Server::Morbo.
- Improved documentation.
Expand Down
4 changes: 2 additions & 2 deletions t/mojo/iowatcher_ev.t
Expand Up @@ -8,13 +8,13 @@ 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';
plan tests => 65;
plan tests => 66;

# "Oh well. At least we'll die doing what we love: inhaling molten rock."
use IO::Socket::INET;
use Mojo::IOWatcher::EV;

# Instantiation
use_ok 'Mojo::IOWatcher::EV';
my $watcher = Mojo::IOWatcher::EV->new;
is ref $watcher, 'Mojo::IOWatcher::EV', 'right object';
is ref Mojo::IOWatcher::EV->new, 'Mojo::IOWatcher', 'right object';
Expand Down

0 comments on commit 50e3484

Please sign in to comment.