We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27558d3 commit ec7dc1fCopy full SHA for ec7dc1f
t/00-pod.t
@@ -0,0 +1,8 @@
1
+#!/usr/bin/perl
2
+use strict;
3
+use warnings;
4
+use Test::More;
5
+eval "use Test::Pod 1.00";
6
+plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;
7
+my @poddirs = qw( lib );
8
+all_pod_files_ok( all_pod_files( @poddirs ) );
t/01-load.t
@@ -0,0 +1,10 @@
+use Test::More tests => 2;
+
+use CellBIS::SQL::Abstract;
+my $sql_abstract = CellBIS::SQL::Abstract->new;
9
+ok(defined $sql_abstract, 'Module CellBIS::SQL::Abstract can loaded');
10
+ok($sql_abstract->isa('CellBIS::SQL::Abstract'), 'Modules can be used.');
0 commit comments