From da985aebdcbc7bb7770285cb35165ca7dbba8e90 Mon Sep 17 00:00:00 2001 From: Mehmet Date: Sun, 31 May 2026 12:59:05 +0300 Subject: [PATCH] WAI verify smoke fixture (2 gecen test) --- README.md | 5 +++++ test_smoke.py | 13 +++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 README.md create mode 100644 test_smoke.py diff --git a/README.md b/README.md new file mode 100644 index 0000000..78a5988 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# wai-verify-fixture + +WAI self-heal dogrulama (verify_fix) icin minik smoke fixture. +gVisor sandbox: git clone -> (diff apply) -> pytest -> verdict. +Bagimliliksiz (yalniz stdlib + pytest). diff --git a/test_smoke.py b/test_smoke.py new file mode 100644 index 0000000..d57af51 --- /dev/null +++ b/test_smoke.py @@ -0,0 +1,13 @@ +"""WAI verify_fix canli smoke fixture — bagimliliksiz, stdlib-only. + +PASS smoke: oldugu gibi -> 2 passed. +FAIL smoke: test_addition'i bozan diff uygulanir -> 1 failed. +""" + + +def test_addition(): + assert 1 + 1 == 2 + + +def test_truth(): + assert True