diff options
author | Steffen Mueller <smueller@cpan.org> | 2009-06-08 20:37:11 +0200 |
---|---|---|
committer | Steffen Mueller <smueller@cpan.org> | 2009-06-08 20:37:11 +0200 |
commit | 9758931364444385e32f6e1abf2e6aba4ddbd236 (patch) | |
tree | d57594d80045800312555078b2b448690cdeae1f /t | |
parent | 8e6b08e459f07177fcae5d091acb96efb996d8ff (diff) | |
download | perl-9758931364444385e32f6e1abf2e6aba4ddbd236.tar.gz |
t/op/my_stash.t should use test.pl instead of Test.pm
Diffstat (limited to 't')
-rw-r--r-- | t/op/my_stash.t | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/t/op/my_stash.t b/t/op/my_stash.t index 1e93fc7c63..5f7d245f4c 100644 --- a/t/op/my_stash.t +++ b/t/op/my_stash.t @@ -5,11 +5,10 @@ package Foo; BEGIN { chdir 't' if -d 't'; @INC = '../lib'; + require './test.pl'; } -use Test; - -plan tests => 7; +plan 7; use constant MyClass => 'Foo::Bar::Biz::Baz'; |