xref: /openbsd/gnu/usr.bin/perl/cpan/autodie/t/no_carp.t (revision 274d7c50)
1#!/usr/bin/perl -w
2
3# Test that autodie doesn't pollute the caller with carp and croak.
4
5use strict;
6
7use Test::More tests => 2;
8
9use autodie;
10
11ok !defined &main::carp;
12ok !defined &main::croak;
13