Add ARM files
[dh-make-perl] / dev / arm / libtest-simple-perl / libtest-simple-perl-0.80 / t / no_ending.t
diff --git a/dev/arm/libtest-simple-perl/libtest-simple-perl-0.80/t/no_ending.t b/dev/arm/libtest-simple-perl/libtest-simple-perl-0.80/t/no_ending.t
new file mode 100644 (file)
index 0000000..97e968e
--- /dev/null
@@ -0,0 +1,21 @@
+use Test::Builder;
+
+BEGIN {
+    if( $ENV{PERL_CORE} ) {
+        chdir 't';
+        @INC = '../lib';
+    }
+}
+
+BEGIN {
+    my $t = Test::Builder->new;
+    $t->no_ending(1);
+}
+
+use Test::More tests => 3;
+
+# Normally, Test::More would yell that we ran too few tests, but we
+# supressed the ending diagnostics.
+pass;
+print "ok 2\n";
+print "ok 3\n";