File: libmaxminddb-version.t

package info (click to toggle)
libmaxmind-db-reader-xs-perl 1.000008-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,320 kB
  • sloc: perl: 3,263; ansic: 260; makefile: 3; sh: 2
file content (15 lines) | stat: -rw-r--r-- 275 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use strict;
use warnings;
use autodie;

use Test::More;

use MaxMind::DB::Reader::XS;

ok( 1, 'no-op' );

## no critic (Subroutines::ProhibitCallsToUnexportedSubs)
diag( 'libmaxminddb version is '
        . MaxMind::DB::Reader::XS::libmaxminddb_version() );

done_testing();