summaryrefslogtreecommitdiffstats
path: root/t/002-spawn.t
diff options
context:
space:
mode:
Diffstat (limited to 't/002-spawn.t')
-rw-r--r--t/002-spawn.t16
1 files changed, 0 insertions, 16 deletions
diff --git a/t/002-spawn.t b/t/002-spawn.t
deleted file mode 100644
index 620a57a..0000000
--- a/t/002-spawn.t
+++ /dev/null
@@ -1,16 +0,0 @@
-#!perl
-use strict;
-use warnings;
-use Test::More tests => 5;
-use IO::Pty::Easy;
-
-my $pty = IO::Pty::Easy->new;
-$pty->spawn("$^X -ple ''");
-ok($pty->is_active, "spawning a subprocess");
-ok($pty->kill(0, 1), "subprocess actually exists");
-$pty->kill;
-ok(!$pty->is_active, "killing a subprocess");
-$pty->spawn("$^X -ple ''");
-$pty->close;
-ok(!$pty->is_active, "auto-killing a pty with close()");
-ok(!$pty->opened, "closing a pty after a spawn");