File: Test-Assertion_style.pl

package info (click to toggle)
libtest-assertions-perl 1.054-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, squeeze, wheezy
  • size: 148 kB
  • ctags: 31
  • sloc: perl: 562; makefile: 15
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');
}