mirror of
https://github.com/torlando-tech/pyxis.git
synced 2026-08-22 02:29:51 +00:00
6 lines
305 B
Python
6 lines
305 B
Python
from pathlib import Path
|
|
from native_test import compile_and_run
|
|
ROOT=Path(__file__).resolve().parents[2]
|
|
def test_nomadnet_storage_contract(tmp_path):
|
|
compile_and_run(tmp_path,name="nomadnet_storage",sources=[ROOT/"tests/native/test_nomadnet_storage.cpp"],include_dirs=[ROOT/"lib/tdeck_ui/UI/LXMF"])
|