Skip to content

Commit

Permalink
move problematic test to the end
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Dec 4, 2015
1 parent e1f1e06 commit 1ce3882
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Changes
@@ -1,5 +1,5 @@

6.35 2015-12-03
6.35 2015-12-04
- Removed deprecated collecting method from Mojo::UserAgent::CookieJar.
- Fixed warnings in Mojo::Cookie::Response.

Expand Down
8 changes: 4 additions & 4 deletions t/mojolicious/pod_renderer_lite_app.t
Expand Up @@ -55,10 +55,6 @@ $t->get_ok('/art')->status_is(200)->text_like('h2[id="art"]' => qr/art/)
# Empty
$t->get_ok('/empty')->status_is(200)->content_is('');

# Welcome
$t->get_ok('/perldoc')->status_is(200)->element_exists('#mojobar')
->text_like('title', qr/Mojolicious guide to the galaxy/);

# Headings
$t->get_ok('/perldoc/MojoliciousPODTest')->status_is(200)
->element_exists('h1#One')->element_exists('h2#Two')
Expand Down Expand Up @@ -88,6 +84,10 @@ $t->get_ok('/perldoc/MojoliciousPODTest' => {Accept => 'text/plain'})
# Perldoc browser (unsupported format)
$t->get_ok('/perldoc/MojoliciousPODTest.json')->status_is(204);

# Welcome
$t->get_ok('/perldoc')->status_is(200)->element_exists('#mojobar')
->text_like('title', qr/Mojolicious guide to the galaxy/);

done_testing();

__DATA__
Expand Down

0 comments on commit 1ce3882

Please sign in to comment.