ready to release
[acme-study-perl.git] / t / studyperl.t
blob3924ba9d68bcdd760fa15e0af779ba15d286ad97
1 #!perl -T
3 use strict;
4 use warnings;
5 use Test::More qw(no_plan);
6 use Acme::Study::Perl qw(studyperl);
8 SKIP: {
9     diag("no tests in this file, only diagnostics");
10     skip;
13 diag("\n");
14 studyperl(q{'123456789123456789.2' <=> '123456789123456790'}, "native big math float/int");
15 studyperl(q{'123456789123456789.2' <=> '123456789123456790.0'}, "native big math float/float");
16 studyperl(q{'123456789123456789' <=> '123456789123456790'}, "native big math int/int");
17 studyperl(q{'123456789123456789123456789123456789' <=> '123456789123456789123456789123456790'}, "native big math int/int larger");