File: 00-load.t

package info (click to toggle)
libdancer-plugin-database-core-perl 0.20-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 176 kB
  • sloc: perl: 631; makefile: 2
file content (14 lines) | stat: -rw-r--r-- 363 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!perl -T
use 5.006;
use strict;
use warnings FATAL => 'all';
use Test::More;

plan tests => 2;

BEGIN {
    use_ok( 'Dancer::Plugin::Database::Core' ) || print "Bail out!\n";
    use_ok( 'Dancer::Plugin::Database::Core::Handle' ) || print "Bail out!\n";
}

diag( "Testing Dancer::Plugin::Database::Core $Dancer::Plugin::Database::Core::VERSION, Perl $], $^X" );