Initial commit
This commit is contained in:
commit
fc8cc85a04
14 changed files with 321 additions and 0 deletions
12
tests/test_infinite_random_numbers.py
Normal file
12
tests/test_infinite_random_numbers.py
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue