11 lines
173 B
Python
11 lines
173 B
Python
from pathlib import Path
|
|
|
|
from tests.common.mock import MockSource
|
|
|
|
MATCHTV_MOCK_SOURCE = MockSource(
|
|
Path(__file__).parent,
|
|
{
|
|
"test": "test.html",
|
|
},
|
|
)
|