File: One.pm

package info (click to toggle)
libmodule-pluggable-ordered-perl 1.5-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze, wheezy
  • size: 80 kB
  • ctags: 11
  • sloc: perl: 63; makefile: 2
file content (8 lines) | stat: -rw-r--r-- 137 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
package Foo::One;

sub _order { 70 };

sub mycallback_order { 20 }
sub mycallback { Test::More::is($::order++, 2, "Second plugin") }

1;