Import namespace-clean-0.03.tar.gz.
[p5sagit/namespace-clean.git] / t / 01-function-wipeout.t
CommitLineData
40aef9d6 1#!/usr/bin/env perl
2use warnings;
3use strict;
4
5use FindBin;
6use lib "$FindBin::Bin/lib";
7use Test::More tests => 5;
8
9use_ok('FunctionWipeout');
10ok( !FunctionWipeout->can('foo'),
11 'imported function removed' );
12ok( !FunctionWipeout->can('bar'),
13 'previously declared function removed' );
14ok( FunctionWipeout->can('baz'),
15 'later declared function still exists' );
16is( FunctionWipeout->baz, 23,
17 'removed functions still bound' );
18