File Coverage

blib/lib/open3.pl
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             # This is a compatibility interface to IPC::Open3. New programs should
2             # do
3             #
4             # use IPC::Open3;
5             #
6             # instead of
7             #
8             # require 'open3.pl';
9              
10             package main;
11 2     2   2019 use IPC::Open3 'open3';
  2         2307  
  2         90  
12             1