9 lines
113 B
Python
9 lines
113 B
Python
"""Example test module."""
|
|
|
|
import pytest
|
|
|
|
|
|
def test_example():
|
|
"""Example test function."""
|
|
assert True
|