Spaces:
Running
Running
File size: 173 Bytes
207c07d |
1 2 3 4 5 6 7 8 9 10 |
import pytest
def test_simple():
"""Simple test to verify pytest is working"""
assert True
def test_another():
"""Another simple test"""
assert 1 + 1 == 2
|