14 lines
198 B
Python
14 lines
198 B
Python
import pytest
|
|
|
|
|
|
class TestMain:
|
|
def test_example_1(self):
|
|
"""
|
|
A basic test example
|
|
"""
|
|
assert 3 == 1 + 2
|
|
|
|
|
|
if __name__ == "__main__":
|
|
pytest.main([__file__])
|