use App::RecordStream::Test::OperationHelper; use strict; use warnings; BEGIN { eval { require Proc::ProcessTable; }; if ( $@ ) { require Test::More; import Test::More skip_all => 'Missing Proc::ProcessTable Modules!'; } else { require Test::More; import Test::More qw(no_plan); use_ok( 'App::RecordStream::Operation::fromps' ); } }; BEGIN { use_ok( 'App::RecordStream::Operation::fromps' ) }; my $solution = <new(); my $op = App::RecordStream::Operation::fromps->new([], $keeper); $op->set_converter($converter); $op->set_process_table(MockTable->new()); my $helper = App::RecordStream::Test::OperationHelper->new( operation => $op, keeper => $keeper, input => '', output => $solution, ); $helper->matches(); package MockTable; sub new { my $class = shift; my $this = {}; bless $this, $class; return $this; } sub table { return [ { uid => '1003', pid => 1, ppid => 0}, { uid => '1003', pid => 2, ppid => 1}, { uid => '1003', pid => 3, ppid => 0}, { uid => '1003', pid => 4, ppid => 2}, ]; } sub fields { return qw(uid pid ppid); } 1;