use command pipe output and exception handling utils, handles now under 'handles...
[scpubgit/System-Introspector.git] / t / filehandles.t
CommitLineData
d52d96e6 1use strictures 1;
2use Test::More;
3
4use System::Introspector::FileHandles;
5
6my $probe = System::Introspector::FileHandles->new;
7my $data = $probe->gather;
8
9ok(@$data, 'received filehandle data');
10ok(not(grep { not keys %$_ } @$data), 'keys in all entries');
11
12done_testing;