File: 02-vstring.t

package info (click to toggle)
libdist-zilla-plugin-ourpkgversion-perl 1%3A0.14-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 288 kB
  • sloc: perl: 615; sh: 4; makefile: 2
file content (26 lines) | stat: -rw-r--r-- 511 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/perl
use strict;
use warnings;
use Test::More;
use Test::DZil;
use Test::Version qw( version_ok );
use Path::Tiny qw( path );

my $tzil = Builder->from_config({ dist_root => 'corpus/vDZT' });

$tzil->build;

version_ok( path($tzil->tempdir)->child('build/lib/vDZT.pm'));

my $lib = $tzil->slurp_file('build/lib/vDZT.pm');

my $expected_lib = <<'END LIB';
package vDZT;
our $VERSION = 'v0.1.0'; # VERSION
1;
# ABSTRACT: my abstract
END LIB

is ( $lib, $expected_lib, 'check vDZT.pm' );

done_testing;