File: 00impl-pp.t

package info (click to toggle)
libversion-perl 1%3A0.9917-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 620 kB
  • ctags: 873
  • sloc: perl: 2,104; ansic: 963; makefile: 3
file content (21 lines) | stat: -rw-r--r-- 581 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#! /usr/local/perl -w
# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl test.pl'

#########################

use Test::More qw/no_plan/;
use File::Spec;

BEGIN {
    my $coretests = File::Spec->catpath(
        (File::Spec->splitpath($0))[0,1], 'coretests.pm'
    );
    require $coretests;
    use_ok('version::vpp', 0.9917);
}

BaseTests("version::vpp","new","qv");
BaseTests("version::vpp","new","declare");
BaseTests("version::vpp","parse", "qv");
BaseTests("version::vpp","parse", "declare");