Files
8-cut/tests/test_utils.py
T
2026-04-06 11:16:52 +02:00

24 lines
693 B
Python

from main import build_export_path, format_time
def test_build_export_path_first():
assert build_export_path("/out", "clip", 1) == "/out/clip_001.mp4"
def test_build_export_path_counter():
assert build_export_path("/out", "clip", 42) == "/out/clip_042.mp4"
def test_build_export_path_deep_counter():
assert build_export_path("/out", "shot", 999) == "/out/shot_999.mp4"
def test_format_time_seconds():
assert format_time(0.0) == "0:00.0"
def test_format_time_minutes():
assert format_time(75.3) == "1:15.2"
def test_format_time_rounding():
assert format_time(61.05) == "1:01.0"
def test_format_time_no_sixty_rollover():
assert format_time(59.95) == "0:59.9"