pyodide/packages/sharedlib-test-py/test_sharedlib.py

11 lines
255 B
Python
Raw Normal View History

import pytest
from pytest_pyodide import run_in_pyodide
@pytest.mark.requires_dynamic_linking
@run_in_pyodide(packages=["sharedlib-test-py"])
def test_sharedlib(selenium):
from sharedlib_test import do_the_thing
assert do_the_thing(4, 5) == 29