Skip to content

Commit

Permalink
remove use of ... (yada-yada) operator introduced in Perl v5.12
Browse files Browse the repository at this point in the history
  • Loading branch information
SysPete authored and veryrusty committed Mar 3, 2016
1 parent f932dd9 commit be96d1a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions t/plugin2/define-keywords.t
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ BEGIN {
use Dancer2::Plugin;

push @::expected_keywords, 'foo';
plugin_keywords foo => sub { ... };
plugin_keywords foo => sub { die "unimplemented" };

push @::expected_keywords, 'bar';
has bar => (
Expand All @@ -31,9 +31,9 @@ BEGIN {
);

push @::expected_keywords, 'quux', 'qiix', 'qox', 'qooox';
sub quux :PluginKeyword { ... };
sub qaax :PluginKeyword(qiix) { ... };
sub qoox :PluginKeyword(qox qooox) { ... };
sub quux :PluginKeyword { die "unimplemented" };
sub qaax :PluginKeyword(qiix) { die "unimplemented" };
sub qoox :PluginKeyword(qox qooox) { die "unimplemented" };

}

Expand Down

0 comments on commit be96d1a

Please sign in to comment.