Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
more tests
  • Loading branch information
kraih committed Sep 3, 2011
1 parent fce07e9 commit 0cfa81a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Changes
@@ -1,5 +1,8 @@
This file documents the revision history for Perl extension Mojolicious.

1.98 2011-09-03 00:00:00
- Improved tests.

1.97 2011-09-03 00:00:00
- Improved unicode handling to be more correct and less forgiving.
- Fixed typos.
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojolicious.pm
Expand Up @@ -34,7 +34,7 @@ has static => sub { Mojolicious::Static->new };
has types => sub { Mojolicious::Types->new };

our $CODENAME = 'Smiling Face With Sunglasses';
our $VERSION = '1.97';
our $VERSION = '1.98';

# "These old doomsday devices are dangerously unstable.
# I'll rest easier not knowing where they are."
Expand Down
5 changes: 4 additions & 1 deletion t/mojolicious/lite_app.t
Expand Up @@ -10,7 +10,7 @@ BEGIN {
$ENV{MOJO_MODE} = 'development';
}

use Test::More tests => 893;
use Test::More tests => 896;

# Pollution
123 =~ m/(\d+)/;
Expand Down Expand Up @@ -779,6 +779,9 @@ $t->get_ok('/uni/aäb')->status_is(200)->content_is('/uni/a%C3%A4b');
# GET /uni/a%E4b
$t->get_ok('/uni/a%E4b')->status_is(200)->content_is('/uni/a%C3%A4b');

# GET /uni/a%C3%A4b
$t->get_ok('/uni/a%C3%A4b')->status_is(200)->content_is('/uni/a%C3%A4b');

# GET /unicode/☃
$t->get_ok('/unicode/☃')->status_is(200)
->content_is('☃/unicode/%E2%98%83');
Expand Down

0 comments on commit 0cfa81a

Please sign in to comment.