diff options
author | P. J. McDermott <pj@pehjota.net> | 2017-01-17 14:31:00 (EST) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2017-01-17 14:31:00 (EST) |
commit | 27c2c8c9271e20ec04d333ecd4a1c82e7658f570 (patch) | |
tree | 6bbe45101d55d966a64e909108fad8e852aa00de | |
parent | dc7128145b3301c83cd890069a7fc5de9f484bd2 (diff) | |
download | Math-Decimal-FastPP-27c2c8c9271e20ec04d333ecd4a1c82e7658f570.zip Math-Decimal-FastPP-27c2c8c9271e20ec04d333ecd4a1c82e7658f570.tar.gz Math-Decimal-FastPP-27c2c8c9271e20ec04d333ecd4a1c82e7658f570.tar.bz2 |
t/*.t: Import functions
-rw-r--r-- | t/10_dadd.t | 2 | ||||
-rw-r--r-- | t/11_dmul.t | 2 | ||||
-rw-r--r-- | t/12_dmul-dadd.t | 2 | ||||
-rw-r--r-- | t/13_drhtz-drhfz.t | 2 | ||||
-rw-r--r-- | t/20_nj-st-75-2017.t | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/t/10_dadd.t b/t/10_dadd.t index 51d27f4..23cc3e1 100644 --- a/t/10_dadd.t +++ b/t/10_dadd.t @@ -19,7 +19,7 @@ use strict; use warnings; use Test::More; -use Math::Decimal::FastPP; +use Math::Decimal::FastPP qw(dadd dmul drhtz drhfz); my @tests; my $a; diff --git a/t/11_dmul.t b/t/11_dmul.t index 3a5e232..c5fd165 100644 --- a/t/11_dmul.t +++ b/t/11_dmul.t @@ -19,7 +19,7 @@ use strict; use warnings; use Test::More; -use Math::Decimal::FastPP; +use Math::Decimal::FastPP qw(dadd dmul drhtz drhfz); my @tests; my $a; diff --git a/t/12_dmul-dadd.t b/t/12_dmul-dadd.t index b81afd4..d69e7dd 100644 --- a/t/12_dmul-dadd.t +++ b/t/12_dmul-dadd.t @@ -19,7 +19,7 @@ use strict; use warnings; use Test::More; -use Math::Decimal::FastPP; +use Math::Decimal::FastPP qw(dadd dmul drhtz drhfz); plan("tests" => 2); diff --git a/t/13_drhtz-drhfz.t b/t/13_drhtz-drhfz.t index 284f97e..2d47bbc 100644 --- a/t/13_drhtz-drhfz.t +++ b/t/13_drhtz-drhfz.t @@ -20,7 +20,7 @@ use warnings; use Test::More; use B qw(svref_2object); -use Math::Decimal::FastPP; +use Math::Decimal::FastPP qw(dadd dmul drhtz drhfz); my @std_tests; my @tie_tests; diff --git a/t/20_nj-st-75-2017.t b/t/20_nj-st-75-2017.t index f72928e..4569321 100644 --- a/t/20_nj-st-75-2017.t +++ b/t/20_nj-st-75-2017.t @@ -20,7 +20,7 @@ use warnings; use Test::More; use B qw(svref_2object); -use Math::Decimal::FastPP; +use Math::Decimal::FastPP qw(dadd dmul drhtz drhfz); my @st75; my $from; |