File: 09_version.t

package info (click to toggle)
libcommonmark-perl 0.310100-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 220 kB
  • sloc: perl: 291; makefile: 3
file content (14 lines) | stat: -rw-r--r-- 325 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use strict;
use warnings;

use Test::More tests => 3;

BEGIN {
    use_ok('CommonMark');
}

is(CommonMark->version, CommonMark->compile_time_version,
   'version matches compile_time_version');
is(CommonMark->version_string, CommonMark->compile_time_version_string,
   'version_string matches compile_time_version_string');