perlunifaq, uniintro: fix for 80 col display
[p5sagit/p5-mst-13.2.git] / cpan / File-Temp / t / cmp.t
CommitLineData
0dae80a2 1#!perl -w
2# Test overloading
3
4use Test::More tests => 3;
5use strict;
6
7BEGIN {use_ok( "File::Temp" ); }
8
9my $fh = new File::Temp();
10ok( "$fh" ne "foo", "compare stringified object with string");
11ok( $fh ne "foo", "compare object with string");