[Solved] How to test Generators in Python 3. It gives error all the time

Yes, a generator can’t be equal to a string. When your call your function: get_objects(“anything”), it returns a generator object you can iterate over to get the values. If you want to check if the ith element returned is equal to something, do: for i, elem in enumerate(get_objects(“bla bla”)): if i == 3: return self.assertEqual(elem, … Read more

[Solved] ERROR: Could not find a version that satisfies the requirement unittest (from versions: none) ERROR: No matching distribution found for unittest

ERROR: Could not find a version that satisfies the requirement unittest (from versions: none) ERROR: No matching distribution found for unittest solved ERROR: Could not find a version that satisfies the requirement unittest (from versions: none) ERROR: No matching distribution found for unittest