mirror of
https://github.com/BrianPugh/gnwmanager.git
synced 2025-12-05 13:15:58 +01:00
13 lines
121 B
Python
13 lines
121 B
Python
import pytest
|
|
|
|
import gnwmanager
|
|
|
|
|
|
@pytest.fixture
|
|
def data():
|
|
return 1
|
|
|
|
|
|
def test_dummy(data):
|
|
assert data == 1
|