summaryrefslogtreecommitdiffstats
path: root/contrib/perl5/t/lib/selectsaver.t
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/perl5/t/lib/selectsaver.t')
-rwxr-xr-xcontrib/perl5/t/lib/selectsaver.t28
1 files changed, 28 insertions, 0 deletions
diff --git a/contrib/perl5/t/lib/selectsaver.t b/contrib/perl5/t/lib/selectsaver.t
new file mode 100755
index 0000000..3b58d70
--- /dev/null
+++ b/contrib/perl5/t/lib/selectsaver.t
@@ -0,0 +1,28 @@
+#!./perl
+
+BEGIN {
+ chdir 't' if -d 't';
+ @INC = '../lib';
+}
+
+print "1..3\n";
+
+use SelectSaver;
+
+open(FOO, ">foo-$$") || die;
+
+print "ok 1\n";
+{
+ my $saver = new SelectSaver(FOO);
+ print "foo\n";
+}
+
+# Get data written to file
+open(FOO, "foo-$$") || die;
+chomp($foo = <FOO>);
+close FOO;
+unlink "foo-$$";
+
+print "ok 2\n" if $foo eq "foo";
+
+print "ok 3\n";
OpenPOWER on IntegriCloud