summaryrefslogtreecommitdiffstats
path: root/t/001-open-close.t
blob: 46ad7fc39d2ac4a7f2bb04ccc803e5714dea4626 (plain) (blame)
1
2
3
4
5
6
7
8
9
#!perl
use strict;
use warnings;
use Test::More tests => 1;
use IO::Pty::Easy;

my $pty = new IO::Pty::Easy;
$pty->close;
ok(!defined($pty->{pty}), "closing a pty before a spawn");