Build latest book artifacts / build (push) Canceled after 0s
dependency resolution / resolve (3.11) (push) Canceled after 0s
dependency resolution / resolve (3.13) (push) Canceled after 0s
deploy-pages / build (push) Canceled after 0s
deploy-pages / deploy (push) Canceled after 0s
i18n consistency check / check (push) Canceled after 0s
provider adoption tests / test (chapter2/context-compression) (push) Canceled after 0s
provider adoption tests / test (chapter2/prompt-injection) (push) Canceled after 0s
provider adoption tests / test (chapter2/system-hint) (push) Canceled after 0s
provider adoption tests / test (chapter3/log-sanitization) (push) Canceled after 0s
web-search-agent tests / test (push) Canceled after 0s
web-search-agent tests / agentbook (push) Canceled after 0s
19 lines
478 B
Python
19 lines
478 B
Python
"""Regression: slowmo factor<=0 must not ZeroDivisionError."""
|
|
from pathlib import Path
|
|
|
|
|
|
def test_source_skips_nonpositive_factor():
|
|
src = Path(__file__).with_name("video_editor.py").read_text()
|
|
assert "if factor <= 0:" in src
|
|
assert "continue" in src.split("if factor <= 0:")[1][:80]
|
|
|
|
|
|
def test_division_guard_math():
|
|
factor = 0.0
|
|
if factor <= 0:
|
|
skipped = True
|
|
else:
|
|
_ = 1.0 / factor
|
|
skipped = False
|
|
assert skipped is True
|