summaryrefslogtreecommitdiff
path: root/lib/Test/Simple/t/note.t
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Test/Simple/t/note.t')
-rw-r--r--lib/Test/Simple/t/note.t30
1 files changed, 0 insertions, 30 deletions
diff --git a/lib/Test/Simple/t/note.t b/lib/Test/Simple/t/note.t
deleted file mode 100644
index fb98fb4029..0000000000
--- a/lib/Test/Simple/t/note.t
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/usr/bin/perl -w
-
-BEGIN {
- if( $ENV{PERL_CORE} ) {
- chdir 't';
- @INC = ('../lib', 'lib');
- }
- else {
- unshift @INC, 't/lib';
- }
-}
-
-use strict;
-use warnings;
-
-use Test::Builder::NoOutput;
-
-use Test::More tests => 2;
-
-{
- my $tb = Test::Builder::NoOutput->create;
-
- $tb->note("foo");
-
- $tb->reset_outputs;
-
- is $tb->read('out'), "# foo\n";
- is $tb->read('err'), '';
-}
-