summaryrefslogtreecommitdiff
path: root/t/00load.t
blob: 306081c477aa2021b8596105873613756b0f5369 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/perl

# - Make sure we can load the module
# - Module version is available

use Test::More tests => 3;

use_ok 'POE::Component::Pg';

ok defined($POE::Component::Pg::VERSION), 'Module version exists';
ok length($POE::Component::Pg::VERSION) > 0, 'Module version is non-empty';