Home | History | Annotate | Download | only in test

Lines Matching refs:constructors

62         for algorithm, constructors in self.constructors_to_test.items():
63 constructors.add(getattr(hashlib, algorithm))
68 constructors.add(_test_algorithm_via_hashlib_new)
76 for algorithm, constructors in self.constructors_to_test.items():
79 constructors.add(constructor)
100 constructors = self.constructors_to_test.itervalues()
101 for cons in itertools.chain.from_iterable(constructors):
158 constructors = self.constructors_to_test[name]
160 self.assertGreaterEqual(len(constructors), 2)
161 for hash_object_constructor in constructors:
171 constructors = self.constructors_to_test[name]
173 self.assertGreaterEqual(len(constructors), 2)
174 for hash_object_constructor in constructors: