1#!/usr/bin/env perl 2# HARNESS-NO-STREAM 3 4use strict; 5use warnings; 6 7use Test::Builder::Tester tests => 1; 8use Test::More; 9 10subtest 'foo' => sub { 11 plan tests => 1; 12 13 test_out("not ok 1 - foo"); 14 test_fail(+1); 15 fail("foo"); 16 test_test("fail works"); 17}; 18