File: module_versions.t

package info (click to toggle)
libglib-perl 3%3A1.329-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,320 kB
  • sloc: perl: 4,938; ansic: 901; makefile: 7
file content (17 lines) | stat: -rw-r--r-- 543 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/perl
use strict;
use warnings;
use Test::More;

eval "use Test::ConsistentVersion";
plan skip_all => "Test::ConsistentVersion required "
    . "for checking module versions" if $@;
Test::ConsistentVersion::check_consistent_versions(
    # We don't use the version in the README
    no_readme => 1,
    # We don't maintain a ChangeLog file, we use NEWS instead
    no_changelog => 1,
    # Test::Pod::Content lookѕ for VERSION blocks in POD, which (currently)
    # don't exist in Glib's autogenerated POD files
    no_pod => 1,
);