Skip to content

Commit

Permalink
fixed small portability issue in loader test
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Nov 30, 2011
1 parent fd61e66 commit e7f716d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions Changes
Expand Up @@ -6,6 +6,7 @@ This file documents the revision history for Perl extension Mojolicious.
- Fixed one-byte payload bug in Mojo::Transaction::WebSocket. (tinx)
- Fixed body event in Mojo::Content to work more reliably in CGI
environments.
- Fixed small portability issue in loader test.

2.34 2011-11-28 00:00:00
- Added "websocket.pl" to example scripts.
Expand Down
3 changes: 1 addition & 2 deletions t/mojo/loader.t
@@ -1,7 +1,7 @@
#!/usr/bin/env perl
use Mojo::Base -strict;

use Test::More tests => 47;
use Test::More tests => 46;

use FindBin;
use lib "$FindBin::Bin/lib";
Expand All @@ -16,7 +16,6 @@ use_ok 'Mojo::Loader';

# Single character core module
my $loader = Mojo::Loader->new;
ok !UNIVERSAL::can(B => 'svref_2object');
ok !$loader->load('B');
ok !!UNIVERSAL::can(B => 'svref_2object');

Expand Down

0 comments on commit e7f716d

Please sign in to comment.