This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Teach t/TEST about Math-BigInt in dist/
[perl5.git] / t / op / print.t
CommitLineData
a9bec287
GG
1#!./perl
2
3BEGIN {
4 require "test.pl";
5}
6
7plan(2);
8
9fresh_perl_is('$_ = qq{OK\n}; print;', "OK\n",
10 'print without arguments outputs $_');
11fresh_perl_is('$_ = qq{OK\n}; print STDOUT;', "OK\n",
12 'print with only a filehandle outputs $_');