From 488761b68019aa2b73b69323757049fe2889cfcf Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Thu, 05 Jan 2017 17:43:05 -0500 Subject: t/11_dmul.t: Improve test coverage The first new test brings dmul() to 100% test coverage. The other two are just bonuses. --- diff --git a/t/11_dmul.t b/t/11_dmul.t index f7f8a0e..3a5e232 100644 --- a/t/11_dmul.t +++ b/t/11_dmul.t @@ -28,6 +28,9 @@ my $c; @tests = ( # a b c + [ 2 , 2 , "4." ], + [ 1 , 0.23, ".23" ], + [ 0.23, 1 , ".23" ], [ 1.23, 4.56, "5.6088"], [-1.23, 4.56, "-5.6088"], [-1.23, -4.56, "5.6088"], -- cgit v0.9.1