sync a bunch of files with Test::Simple 0.86
[p5sagit/p5-mst-13.2.git] / lib / Test / Simple / t / Tester / tbt_03die.t
CommitLineData
845d7e37 1#!/usr/bin/perl
3c4bf434 2# $Id$
845d7e37 3
4use Test::Builder::Tester tests => 1;
5use Test::More;
6
7eval {
8 test_test("foo");
9};
10like($@,
11 "/Not testing\. You must declare output with a test function first\./",
12 "dies correctly on error");
13