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