def test_fail_not_fvec(self): try: level_detection("default", -70) except ValueError as e: pass else: self.fail('non-number input phase does not raise a TypeError')
def test_accept_fvec(self): level_detection(fvec(1024), -70.)
def test_minus_ones_is_zero(self): from numpy import ones assert level_detection(ones(1024, dtype="float32"), -70) == 0
def test_zeros_is_one(self): from math import isinf assert level_detection(fvec(1024), -70) == 1
def test_fail_not_fvec(self): try: level_detection("default", -70) except ValueError, e: pass
def test_zeros_is_one(self): assert level_detection(fvec(1024), -70) == 1
def test_fail_not_fvec(self): with self.assertRaises(ValueError): level_detection("default", -70)
def test_minus_ones_is_zero(self): from numpy import ones assert level_detection(ones(1024, dtype=float_type), -70) == 0