# Test properties of bool promised by PEP 285 class BoolTest(unittest.TestCase): def test_convert_to_bool(self): check = lambda o: self.assertRaises(TypeError, bool, o) #class Foo(object): def __nonzero__(self): pass