python-piped-api-client/tests/test_infinite_random_number...

13 lines
220 B
Python
Raw Normal View History

2022-01-23 10:14:52 +00:00
from python_project_template import infinitum
def test_infinitum():
"""
Tests the infinite random number generator.
"""
for random in infinitum():
assert type(random) == int
break