sync a bunch of files with Test::Simple 0.86
[p5sagit/p5-mst-13.2.git] / lib / Test / Simple / t / tbm_doesnt_set_exported_to.t
CommitLineData
04955c14 1#!/usr/bin/perl -w
3c4bf434 2# $Id$
04955c14 3
4BEGIN {
5 if( $ENV{PERL_CORE} ) {
6 chdir 't';
7 @INC = '../lib';
8 }
9}
10
11use strict;
12use warnings;
13
14# Can't use Test::More, that would set exported_to()
15use Test::Builder;
16use Test::Builder::Module;
17
18my $TB = Test::Builder->create;
19$TB->plan( tests => 1 );
20$TB->level(0);
21
22$TB->is_eq( Test::Builder::Module->builder->exported_to,
23 undef,
24 'using Test::Builder::Module does not set exported_to()'
ccbd73a4 25);