mirror of
https://github.com/deltachat/deltachat-core.git
synced 2025-10-06 12:00:11 +02:00
16 lines
282 B
Python
16 lines
282 B
Python
import pathlib
|
|
|
|
import pytest
|
|
|
|
from deltachat import capi
|
|
|
|
|
|
@pytest.fixture
|
|
def tmppath(tmpdir):
|
|
return pathlib.Path(tmpdir.strpath)
|
|
|
|
|
|
def test_new():
|
|
mbox = capi.lib.mrmailbox_new(capi.ffi.NULL, capi.ffi.NULL, capi.ffi.NULL)
|
|
capi.lib.mrmailbox_close(mbox)
|
|
assert 0
|