summaryrefslogtreecommitdiff
path: root/cpan/Test-Simple/t/auto.t
diff options
context:
space:
mode:
authorRicardo Signes <rjbs@cpan.org>2015-03-08 18:20:22 -0400
committerRicardo Signes <rjbs@cpan.org>2015-03-11 08:22:07 -0400
commitafad11a2ce2b95ce853f2a09df2cbf068be080c3 (patch)
treee8b977e2afe9262eb6216534cf16935da97eb736 /cpan/Test-Simple/t/auto.t
parent9d58dbc453a86c9cbb3a131adcd1559fe0445a08 (diff)
downloadperl-afad11a2ce2b95ce853f2a09df2cbf068be080c3.tar.gz
move back to a stable Test-Simple, v1.001014
Diffstat (limited to 'cpan/Test-Simple/t/auto.t')
-rw-r--r--cpan/Test-Simple/t/auto.t30
1 files changed, 30 insertions, 0 deletions
diff --git a/cpan/Test-Simple/t/auto.t b/cpan/Test-Simple/t/auto.t
new file mode 100644
index 0000000000..0010342ee9
--- /dev/null
+++ b/cpan/Test-Simple/t/auto.t
@@ -0,0 +1,30 @@
+use strict;
+use warnings;
+
+use lib 't';
+
+use Test::Tester tests => 5;
+
+use SmallTest;
+
+use MyTest;
+
+{
+ my ($prem, @results) = run_tests(
+ sub { MyTest::ok(1, "run pass")}
+ );
+
+ is_eq($results[0]->{name}, "run pass");
+ is_num($results[0]->{ok}, 1);
+}
+
+{
+ my ($prem, @results) = run_tests(
+ sub { MyTest::ok(0, "run fail")}
+ );
+
+ is_eq($results[0]->{name}, "run fail");
+ is_num($results[0]->{ok}, 0);
+}
+
+is_eq(ref(SmallTest::getTest()), "Test::Tester::Delegate");