Files
mplogger/test/test_main.py
2026-01-09 10:26:16 +08:00

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__])