init commit

This commit is contained in:
Disco DeDisco
2025-12-29 21:52:45 -05:00
commit 7285e1d229
9 changed files with 374 additions and 0 deletions

7
functional_tests.py Normal file
View File

@@ -0,0 +1,7 @@
from selenium import webdriver
browser = webdriver.Firefox()
browser.get("http://localhost:8000")
assert "Congratulations!" in browser.title
print("OK")