mirror of
https://github.com/jeertmans/manim-slides.git
synced 2025-05-21 04:26:40 +08:00
14 lines
290 B
Python
14 lines
290 B
Python
from manim_slides.defaults import CONFIG_PATH, FFMPEG_BIN, FOLDER_PATH
|
|
|
|
|
|
def test_folder_path() -> None:
|
|
assert FOLDER_PATH == "./slides"
|
|
|
|
|
|
def test_config_path() -> None:
|
|
assert CONFIG_PATH == ".manim-slides.json"
|
|
|
|
|
|
def test_ffmpeg_bin() -> None:
|
|
assert FFMPEG_BIN == "ffmpeg"
|