Skip to content

Commit

Permalink
fix formatting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Dec 29, 2016
1 parent 2e14e44 commit ce3f89d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions Changes
Expand Up @@ -5,6 +5,7 @@
- Added result method to Mojo::Transaction.
- Added is_client_error, is_error, is_info, is_redirect, is_server_error and
is_success methods to Mojo::Message::Response.
- Fixed bug where Morbo could not handle broken symlinks. (Grinnz)

7.12 2016-12-18
- Added button_to and csrf_button_to helpers to
Expand Down
4 changes: 2 additions & 2 deletions t/mojo/morbo.t
Expand Up @@ -126,9 +126,9 @@ is_deeply $morbo->modified_files, [], 'directory has not changed again';
SKIP: {
skip 'Symlink support required!', 4 unless eval { symlink '', ''; 1 };
my $missing = catfile $subdir, 'missing.txt';
my $broken = catfile $subdir, 'broken.txt';
my $broken = catfile $subdir, 'broken.txt';
symlink $missing, $broken;
ok -l $broken, 'symlink created';
ok -l $broken, 'symlink created';
ok !-f $broken, 'symlink target does not exist';
my $warned;
local $SIG{__WARN__} = sub { $warned++ };
Expand Down

0 comments on commit ce3f89d

Please sign in to comment.