Skip to content

Commit

Permalink
fixed Windows bug in asset.t
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Mar 10, 2012
1 parent 012ccd8 commit 4c32a62
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions Changes
Expand Up @@ -3,6 +3,7 @@ This file documents the revision history for Perl extension Mojolicious.
2.60 2012-03-10 00:00:00
- Made text_area helper a little smarter. (sshaw, sri)
- Fixed escaping bug in select_field and text_area helpers.
- Fixed Windows bug in "asset.t".

2.59 2012-03-09 00:00:00
- Removed duplicate 2.58 directory.
Expand Down
1 change: 1 addition & 0 deletions t/mojo/asset.t
Expand Up @@ -129,6 +129,7 @@ undef $tmp;
ok !-e $path, 'file has been cleaned up';
$file->move_to($path);
is $file->slurp, 'bcd', 'right content';
undef $file;
ok -e $path, 'file exists';
unlink $path;
ok !-e $path, 'file has been cleaned up';
Expand Down
4 changes: 1 addition & 3 deletions t/mojo/hypnotoad.t
Expand Up @@ -17,13 +17,11 @@ use Mojo::Command;
use Mojo::IOLoop;
use Mojo::UserAgent;

# "I ate the blue ones... they taste like burning."
plan skip_all => 'set TEST_HYPNOTOAD to enable this test (developer only!)'
unless $ENV{TEST_HYPNOTOAD};
plan tests => 50;

# "I ate the blue ones... they taste like burning."
use Mojo::Server::Hypnotoad;

# Prepare script
my $cwd = cwd;
my $dir = File::Temp::tempdir(CLEANUP => 1);
Expand Down

0 comments on commit 4c32a62

Please sign in to comment.