lightning/tests/research_proj/sample_model_template/model_template_test.py

14 lines
232 B
Python
Raw Normal View History

2019-03-31 00:50:32 +00:00
import pytest
"""
Example test to show how to add a test for anything in the project.
Look at the README for more instructions
"""
def test_cube():
assert 27 == 27
if __name__ == '__main__':
pytest.main([__file__])