mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
9 lines
203 B
Python
9 lines
203 B
Python
from pathlib import Path
|
|
|
|
from textual.file_monitor import FileMonitor
|
|
|
|
|
|
def test_repr() -> None:
|
|
file_monitor = FileMonitor([Path(".")], lambda: None)
|
|
assert "FileMonitor" in repr(file_monitor)
|