mirror of
https://github.com/duncs/clusterssh.git
synced 2025-07-03 09:53:23 +00:00

Continue work to move all the config code out of the main module into a sub module. Not yet used by the main module.
10 lines
191 B
Perl
10 lines
191 B
Perl
use FindBin;
|
|
use lib $FindBin::Bin.'/../lib';
|
|
|
|
use Test::More tests => 1;
|
|
|
|
BEGIN {
|
|
use_ok( 'App::ClusterSSH' );
|
|
}
|
|
|
|
note( "Testing App::ClusterSSH $App::ClusterSSH::VERSION, Perl $], $^X" );
|