2 # Before `make install' is performed this script should be runnable with
3 # `make test'. After `make install' it should work as `perl test.pl'
5 #########################
7 use Test::More qw/no_plan/;
11 my $coretests = File::Spec->rel2abs(
13 (File::Spec->splitpath($0))[0,1], 'coretests.pm'
19 # Don't want to use, because we need to make sure that the import doesn't
20 # fire just yet (some code does this to avoid importing qv() and delare()).
21 require_ok("version");
22 is $version::VERSION, 0.9921, "Make sure we have the correct class";
23 ok(!"main"->can("qv"), "We don't have the imported qv()");
24 ok(!"main"->can("declare"), "We don't have the imported declare()");
26 BaseTests("version","new",undef);
27 BaseTests("version","parse",undef);