This commit is contained in:
oib
2026-01-26 19:58:21 +01:00
parent 329b3beeba
commit 5c99c92ffb
54 changed files with 6790 additions and 654 deletions

View File

@@ -0,0 +1,26 @@
"""
Test file to verify Windsorf test integration is working
"""
import pytest
def test_pytest_discovery():
"""Simple test to verify pytest can discover this file"""
assert True
def test_windsurf_integration():
"""Test that Windsurf test runner is working"""
assert "windsurf" in "windsurf test integration"
@pytest.mark.parametrize("input,expected", [
(1, 2),
(2, 4),
(3, 6),
])
def test_multiplication(input, expected):
"""Parameterized test example"""
result = input * 2
assert result == expected