File: ATeam.pm

package info (click to toggle)
libfile-find-rule-perl 0.34-4
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 216 kB
  • sloc: perl: 873; makefile: 2
file content (11 lines) | stat: -rw-r--r-- 252 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
package File::Find::Rule::Test::ATeam;
use strict;
use File::Find::Rule;
use base 'File::Find::Rule';

sub File::Find::Rule::ba {
    my $self = shift()->_force_object;
    $self->exec( sub { die "I pity the fool who uses this in production" });
}

1;