summaryrefslogtreecommitdiff
path: root/tests/float/builtin-float-minmax.py
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-07-05 06:14:29 +0100
committerDamien George <damien.p.george@gmail.com>2014-07-05 06:14:29 +0100
commit539681fffd96082ca3b5d18643d4f08f65c47170 (patch)
tree7e6f8332c6e7737b768750e67265bb02b22932e6 /tests/float/builtin-float-minmax.py
parent0182385ab0b4a1b2e549c92f8f5b621135aeb975 (diff)
tests: Rename test scripts, changing - to _ for consistency.
From now on, all new tests must use underscore. Addresses issue #727.
Diffstat (limited to 'tests/float/builtin-float-minmax.py')
-rw-r--r--tests/float/builtin-float-minmax.py26
1 files changed, 0 insertions, 26 deletions
diff --git a/tests/float/builtin-float-minmax.py b/tests/float/builtin-float-minmax.py
deleted file mode 100644
index ce45a768a..000000000
--- a/tests/float/builtin-float-minmax.py
+++ /dev/null
@@ -1,26 +0,0 @@
-# test builtin min and max functions with float args
-
-print(min(0,1.0))
-print(min(1.0,0))
-print(min(0,-1.0))
-print(min(-1.0,0))
-
-print(max(0,1.0))
-print(max(1.0,0))
-print(max(0,-1.0))
-print(max(-1.0,0))
-
-print(min(1.5,-1.5))
-print(min(-1.5,1.5))
-
-print(max(1.5,-1.5))
-print(max(-1.5,1.5))
-
-print(min([1,2.9,4,0,-1,2]))
-print(max([1,2.9,4,0,-1,2]))
-
-print(min([1,2.9,4,6.5,-1,2]))
-print(max([1,2.9,4,6.5,-1,2]))
-print(min([1,2.9,4,-6.5,-1,2]))
-print(max([1,2.9,4,-6.5,-1,2]))
-