mirror of
https://github.com/kuhyx/testsAndMisc.git
synced 2026-07-06 21:03:04 +02:00
11 lines
239 B
Python
11 lines
239 B
Python
|
|
"""Tests for visualize_q24 module."""
|
||
|
|
|
||
|
|
from __future__ import annotations
|
||
|
|
|
||
|
|
|
||
|
|
def test_main() -> None:
|
||
|
|
"""main() assembles and generates the Q24 video."""
|
||
|
|
from python_pkg.praca_magisterska_video.visualize_q24 import main
|
||
|
|
|
||
|
|
main()
|