This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Test::Simple/More/Builder/Tutorial 0.41
[perl5.git] / lib / Test / Simple / t / simple.t
1 BEGIN {
2     if( $ENV{PERL_CORE} ) {
3         chdir 't';
4         @INC = '../lib';
5     }
6 }
7
8 use strict;
9
10 BEGIN { $| = 1; $^W = 1; }
11
12 use Test::Simple tests => 3;
13
14 ok(1, 'compile');
15
16 ok(1);
17 ok(1, 'foo');