mirror of
https://github.com/deltachat/deltachat-core.git
synced 2025-10-04 10:19:16 +02:00

This fixes the python bindings build to work with the new layout of the header files and new names.
10 lines
192 B
Python
10 lines
192 B
Python
import pathlib
|
|
|
|
import pytest
|
|
|
|
from deltachat import capi
|
|
|
|
|
|
def test_empty_context():
|
|
ctx = capi.lib.dc_context_new(capi.ffi.NULL, capi.ffi.NULL, capi.ffi.NULL)
|
|
capi.lib.dc_close(ctx)
|