12 lines
151 B
Perl
12 lines
151 B
Perl
|
#!/usr/bin/perl
|
||
|
use warnings;
|
||
|
use strict;
|
||
|
|
||
|
use Test::More 'no_plan';
|
||
|
|
||
|
BEGIN { use_ok( 'Simba::CA' ); }
|
||
|
|
||
|
my $ca = Simba::CA->new();
|
||
|
ok($ca, 'new CA');
|
||
|
|