mirror of
https://github.com/chatmail/core.git
synced 2026-04-06 15:42:10 +03:00
9 lines
184 B
Python
9 lines
184 B
Python
import pytest
|
|
|
|
from deltachat import provider
|
|
|
|
|
|
def test_provider_info_none():
|
|
with pytest.raises(provider.ProviderNotFoundError):
|
|
provider.Provider("email@unexistent.no")
|