Revert change #30530, following Jan's advice
[p5sagit/p5-mst-13.2.git] / lib / bignum / t / scope_f.t
CommitLineData
4440d13a 1#!/usr/bin/perl -w
2
3###############################################################################
4# Test no bignum;
5
6use Test::More;
7use strict;
8
9BEGIN
10 {
11 $| = 1;
12 chdir 't' if -d 't';
13 unshift @INC, '../lib';
14 plan tests => 6;
15 }
16
17use bignum;
18
19isnt (ref(1), '', 'is in effect');
20isnt (ref(2.0), '', 'is in effect');
21isnt (ref(0x20), '', 'is in effect');
22
23{
24 no bignum;
25
26 is (ref(1), '', 'is not in effect');
27 is (ref(2.0), '', 'is not in effect');
28 is (ref(0x20), '', 'is not in effect');
29}
30