mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 04:58:19 -04:00
Added 35 test files with 502 tests covering all Python modules including API routes, ORM models, splendor game logic/TUI, heater controller, weather service, NixOS installer, ZFS dataset management, and utilities. Coverage improved from 11% to 99% (2540/2564 statements covered). https://claude.ai/code/session_01SVzgLDUS1Cdc4eh1ijETTh
11 lines
225 B
Python
11 lines
225 B
Python
"""Tests for capasitor main function."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from python.stuff.capasitor import main
|
|
|
|
|
|
def test_capasitor_main(capsys: object) -> None:
|
|
"""Test capasitor main function runs."""
|
|
main()
|