tests: Rename test scripts, changing - to _ for consistency.
From now on, all new tests must use underscore. Addresses issue #727.
This commit is contained in:
26
tests/float/builtin_float_minmax.py
Normal file
26
tests/float/builtin_float_minmax.py
Normal file
@@ -0,0 +1,26 @@
|
||||
# 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]))
|
||||
|
||||
Reference in New Issue
Block a user