14 lines
229 B
Prolog
14 lines
229 B
Prolog
#!/usr/bin/env perl
|
|
|
|
use lib '../O.Common';
|
|
use databaseModuleDirs;
|
|
|
|
use Test::More tests => 2;
|
|
|
|
use DBD::Function;
|
|
|
|
my $func = DBD::Function->new('test');
|
|
isa_ok $func, 'DBD::Function';
|
|
is $func->name, 'test', 'Function name';
|
|
|