chore: first commit

This commit is contained in:
2025-10-01 17:05:21 +02:00
commit baa74c8b0a
8 changed files with 29 additions and 0 deletions

View File

Binary file not shown.

8
tests/test_example.py Normal file
View File

@@ -0,0 +1,8 @@
import pytest
@pytest.fixture
def sample_data():
return [1, 2, 3]
def test_sum(sample_data):
assert sum(sample_data) == 6