mirror of
https://github.com/duncs/clusterssh.git
synced 2025-04-23 01:42:24 +00:00
16 lines
267 B
Perl
16 lines
267 B
Perl
![]() |
use strict;
|
||
|
use warnings;
|
||
|
|
||
|
use FindBin qw($Bin);
|
||
|
use lib "$Bin/../lib";
|
||
|
|
||
|
use Test::More tests => 2;
|
||
|
use Test::Trap;
|
||
|
|
||
|
BEGIN { use_ok( 'App::ClusterSSH::L10N', ) }
|
||
|
|
||
|
my $handle;
|
||
|
|
||
|
$handle = App::ClusterSSH::L10N->get_handle();
|
||
|
isa_ok( $handle, 'App::ClusterSSH::L10N' );
|