summaryrefslogtreecommitdiff
path: root/ext/bcmath/tests/bcscale.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/bcmath/tests/bcscale.phpt')
-rw-r--r--ext/bcmath/tests/bcscale.phpt21
1 files changed, 0 insertions, 21 deletions
diff --git a/ext/bcmath/tests/bcscale.phpt b/ext/bcmath/tests/bcscale.phpt
deleted file mode 100644
index 4fc2f85eb9..0000000000
--- a/ext/bcmath/tests/bcscale.phpt
+++ /dev/null
@@ -1,21 +0,0 @@
---TEST--
-bcscale() function
---SKIPIF--
-<?php if(!extension_loaded("bcmath")) print "skip"; ?>
---INI--
-bcmath.scale=0
---FILE--
-<?php
-echo bcadd("1", "2"),"\n";
-bcscale(2);
-echo bcadd("1", "2"),"\n";
-bcscale(10);
-echo bcadd("1", "2"),"\n";
-bcscale(0);
-echo bcadd("1", "2"),"\n";
-?>
---EXPECT--
-3
-3.00
-3.0000000000
-3