Skip to content

Commit

Permalink
better plugin argument tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Sep 7, 2012
1 parent e0f4707 commit 993b9e6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions Changes
@@ -1,6 +1,7 @@

3.39 2012-09-08
- Improved documentation.
- Improved tests.

3.38 2012-09-07
- Added xor_encode method to Mojo::ByteStream.
Expand Down
8 changes: 5 additions & 3 deletions t/mojolicious/twinkle_lite_app.t
Expand Up @@ -32,9 +32,11 @@ my $twinkle = {

# Renderer
plugin EPRenderer => {name => 'twinkle', template => $twinkle};
plugin PODRenderer => {no_perldoc => 1};
plugin PODRenderer =>
{name => 'teapod', preprocess => 'twinkle', no_perldoc => 1};
plugin 'PODRenderer', no_perldoc => 1;
plugin 'PODRenderer',
name => 'teapod',
preprocess => 'twinkle',
no_perldoc => 1;

# Configuration
app->defaults(foo_test => 23);
Expand Down

0 comments on commit 993b9e6

Please sign in to comment.