summaryrefslogtreecommitdiffstats
path: root/t/001-open-close.t
blob: 1c9eed10773881479a0df870662773a324c930eb (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 = IO::Pty::Easy->new;
$pty->close;
ok(!$pty->opened, "closing a pty before a spawn");