mirror of https://github.com/python/cpython
Added test for minmax.
This commit is contained in:
parent
152494aea2
commit
4fdb744f53
|
@ -23,6 +23,13 @@ def testmax(data):
|
||||||
return 0
|
return 0
|
||||||
return 1
|
return 1
|
||||||
|
|
||||||
|
def testminmax(data):
|
||||||
|
if audioop.minmax(data[0], 1) <> (0, 2) or \
|
||||||
|
audioop.minmax(data[1], 2) <> (0, 2) or \
|
||||||
|
audioop.minmax(data[2], 4) <> (0, 2):
|
||||||
|
return 0
|
||||||
|
return 1
|
||||||
|
|
||||||
def testmaxpp(data):
|
def testmaxpp(data):
|
||||||
if audioop.maxpp(data[0], 1) <> 0 or \
|
if audioop.maxpp(data[0], 1) <> 0 or \
|
||||||
audioop.maxpp(data[1], 2) <> 0 or \
|
audioop.maxpp(data[1], 2) <> 0 or \
|
||||||
|
|
Loading…
Reference in New Issue