move common audit parts back into store
[pxelator] / lib / PXElator / t / wireshark.t
1 #!/usr/bin/perl
2
3 use warnings;
4 use strict;
5 use autodie;
6
7 use Test::More tests => 2;
8 use Data::Dump qw/dump/;
9
10 use_ok 'wireshark';
11
12 ok( my @actions = wireshark::fork_actions(), 'fork_actions' );
13 diag dump( @actions );
14