File: Test-Assertion_style.pl

package info (click to toggle)
libtest-assertions-perl 1.054-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 164 kB
  • sloc: perl: 562; makefile: 2
file content (15 lines) | stat: -rw-r--r-- 202 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/local/bin/perl
use strict;
use lib qw(./lib ../lib);
use Test::Assertions shift();

Test::Assertions::plan tests => 1;
go();
sub go {
	to();
}
sub to {
#line 100
	ASSERT(0, 'deliberatefail');
}