diff options
Diffstat (limited to 'cpan/Test-Simple/t/Legacy/simple.t')
-rw-r--r-- | cpan/Test-Simple/t/Legacy/simple.t | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/cpan/Test-Simple/t/Legacy/simple.t b/cpan/Test-Simple/t/Legacy/simple.t new file mode 100644 index 0000000000..7297e9d6dd --- /dev/null +++ b/cpan/Test-Simple/t/Legacy/simple.t @@ -0,0 +1,17 @@ +BEGIN { + if( $ENV{PERL_CORE} ) { + chdir 't'; + @INC = '../lib'; + } +} + +use strict; + +BEGIN { $| = 1; $^W = 1; } + +use Test::Simple tests => 3; + +ok(1, 'compile'); + +ok(1); +ok(1, 'foo'); |