mirror of https://github.com/pyodide/pyodide.git
Minimal test for regex (#1038)
This is useful for testing the build system becaues regex is a fairly small package that uses C.
This commit is contained in:
parent
81cc3015bb
commit
15a8ada2d2
|
@ -0,0 +1,3 @@
|
|||
def test_regex(selenium, request):
|
||||
selenium.load_package("regex")
|
||||
assert selenium.run("import regex\nregex.search('o', 'foo').end()") == 2
|
Loading…
Reference in New Issue