10 lines
256 B
Python
10 lines
256 B
Python
import pytest
|
|
|
|
from app.providers.base import ProviderError
|
|
from app.providers.mediathek import MediathekProvider
|
|
|
|
|
|
def test_private_target_rejected():
|
|
with pytest.raises(ProviderError):
|
|
MediathekProvider()._reject_private_targets('localhost')
|