Skip to content

Commit

Permalink
more names
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Apr 22, 2015
1 parent 050606c commit b33df46
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 3 additions & 1 deletion Changes
@@ -1,6 +1,8 @@

6.09 2015-04-22
- Improved HTML Living Standard compliance of Mojo::Parameters.
- Improved HTML Living Standard compliance of Mojo::Parameters. (riche, sri)
- Fixed bug in Mojolicious::Types where the json MIME type did not specify a
charset. (kaktus)

6.08 2015-04-09
- Added is_established and server_open methods to
Expand Down
4 changes: 4 additions & 0 deletions lib/Mojolicious.pm
Expand Up @@ -791,6 +791,8 @@ Andrew Fresh
Andrey Khozov
Andrey Kuzmin
Andy Grundman
Aristotle Pagaltzis
Expand Down Expand Up @@ -961,6 +963,8 @@ Rafal Pocztarski
Randal Schwartz
Richard Elberger
Rick Delaney
Robert Hicks
Expand Down
3 changes: 1 addition & 2 deletions t/mojolicious/restful_lite_app.t
Expand Up @@ -65,8 +65,7 @@ $t->request_ok($tx)->status_is(200)
$tx = $t->ua->build_tx(
PUT => '/json/echo' => {Accept => 'application/json'} => json => [1, 2, 3]);
$t->request_ok($tx)->status_is(200)
->content_type_is('application/json;charset=UTF-8')
->json_is([1, 2, 3]);
->content_type_is('application/json;charset=UTF-8')->json_is([1, 2, 3]);

# Nothing
$t->get_ok('/accepts')->status_is(200)->json_is({best => 'html'});
Expand Down

0 comments on commit b33df46

Please sign in to comment.