Skip to content

Commit

Permalink
fixed a few test descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Aug 29, 2012
1 parent f9f0c80 commit 10d8adb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions t/mojo/request.t
Expand Up @@ -736,7 +736,7 @@ is $req->query_params, 'foo13', 'right parameters';
is $req->headers->content_type,
'multipart/form-data; boundary=----------0xKhTmLbOuNdArY',
'right "Content-Type" value';
is $req->headers->content_length, 416, 'right "Content-Type" value';
is $req->headers->content_length, 416, 'right "Content-Length" value';
isa_ok $req->content->parts->[0], 'Mojo::Content::Single', 'right part';
isa_ok $req->content->parts->[1], 'Mojo::Content::Single', 'right part';
isa_ok $req->content->parts->[2], 'Mojo::Content::Single', 'right part';
Expand Down Expand Up @@ -798,7 +798,7 @@ is $req->query_params, 'foo13', 'right parameters';
is $req->headers->content_type,
'multipart/form-data; boundary=----------0xKhTmLbOuNdArY',
'right "Content-Type" value';
is $req->headers->content_length, 418, 'right "Content-Type" value';
is $req->headers->content_length, 418, 'right "Content-Length" value';
isa_ok $req->content->parts->[0], 'Mojo::Content::Single', 'right part';
isa_ok $req->content->parts->[1], 'Mojo::Content::Single', 'right part';
isa_ok $req->content->parts->[2], 'Mojo::Content::Single', 'right part';
Expand Down Expand Up @@ -874,7 +874,7 @@ is $req->query_params, 'foo13', 'right parameters';
is $req->headers->content_type,
'multipart/form-data; boundary=----------0xKhTmLbOuNdArY',
'right "Content-Type" value';
is $req->headers->content_length, 418, 'right "Content-Type" value';
is $req->headers->content_length, 418, 'right "Content-Length" value';
isa_ok $req->content->parts->[0], 'Mojo::Content::Single', 'right part';
isa_ok $req->content->parts->[1], 'Mojo::Content::Single', 'right part';
isa_ok $req->content->parts->[2], 'Mojo::Content::Single', 'right part';
Expand Down Expand Up @@ -918,7 +918,7 @@ is $req->query_params, 'foo13', 'right parameters';
is $req->headers->content_type,
'multipart/form-data; boundary=----------0xKhTmLbOuNdArY',
'right "Content-Type" value';
is $req->headers->content_length, 418, 'right "Content-Type" value';
is $req->headers->content_length, 418, 'right "Content-Length" value';
isa_ok $req->content, 'Mojo::Content::Single', 'right content';
like $req->content->asset->slurp, qr/------------0xKhTmLbOuNdArY--$/,
'right content';
Expand Down Expand Up @@ -952,7 +952,7 @@ is $req->query_params, 'foo13', 'right parameters';
is $req->headers->content_type,
'multipart/form-data; boundary=----------0xKhTmLbOuNdArY',
'right "Content-Type" value';
is $req->headers->content_length, 418, 'right "Content-Type" value';
is $req->headers->content_length, 418, 'right "Content-Length" value';
isa_ok $req->content->parts->[0], 'Mojo::Content::Single', 'right part';
isa_ok $req->content->parts->[1], 'Mojo::Content::Single', 'right part';
isa_ok $req->content->parts->[2], 'Mojo::Content::Single', 'right part';
Expand Down

0 comments on commit 10d8adb

Please sign in to comment.