File: 30_RE2_missing.t

package info (click to toggle)
libstring-copyright-perl 0.003014-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 284 kB
  • sloc: perl: 177; makefile: 2; sh: 1
file content (14 lines) | stat: -rw-r--r-- 274 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use Test2::V0;

use Test::Without::Module qw( re::engine::RE2 );

plan 1;

use String::Copyright {
	format => sub { join ':', $_->[0] || '', $_->[1] || '' }
};

is copyright('This software is copyright (c) 2016 by Foo'), '2016:Foo',
	'sign pseudosign intro';

done_testing;