Initial commit

This commit is contained in:
Kevo 2022-01-23 11:14:52 +01:00
commit fc8cc85a04
14 changed files with 321 additions and 0 deletions

View file

@ -0,0 +1,12 @@
from python_project_template import infinitum
def test_infinitum():
"""
Tests the infinite random number generator.
"""
for random in infinitum():
assert type(random) == int
break