Initial commit.
This commit is contained in:
13
test/test_main.py
Normal file
13
test/test_main.py
Normal file
@ -0,0 +1,13 @@
|
||||
import pytest
|
||||
|
||||
|
||||
class TestMain:
|
||||
def test_example_1(self):
|
||||
"""
|
||||
A basic test example
|
||||
"""
|
||||
assert 3 == 1 + 2
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
pytest.main([__file__])
|
||||
Reference in New Issue
Block a user