]> git.vpit.fr Git - perl/modules/Sub-Op.git/blobdiff - t/Sub-Op-Test/lib/Sub/Op/Test.pm
Rename Sub::Op::Test to Sub::Op::LexicalSub
[perl/modules/Sub-Op.git] / t / Sub-Op-Test / lib / Sub / Op / Test.pm
diff --git a/t/Sub-Op-Test/lib/Sub/Op/Test.pm b/t/Sub-Op-Test/lib/Sub/Op/Test.pm
deleted file mode 100644 (file)
index ad379a3..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-package Sub::Op::Test;
-
-use strict;
-use warnings;
-
-our ($VERSION, @ISA);
-
-use Sub::Op;
-
-BEGIN {
- $VERSION = '0.01';
- require DynaLoader;
- push @ISA, 'DynaLoader';
- __PACKAGE__->bootstrap($VERSION);
-}
-
-sub import {
- shift;
-
- my ($name, $cb) = @_;
-
- _init($name, $cb);
-
- Sub::Op::enable($name => scalar caller);
-}
-
-1;