20 lines
610 B
Python
20 lines
610 B
Python
import pytest
|
|
|
|
from ..helpers import Suite
|
|
|
|
@pytest.mark.slow_integration_test
|
|
def test_index():
|
|
with open('examples/buffer.py', 'r', encoding='ASCII') as fil:
|
|
code_py = "\n" + fil.read()
|
|
|
|
result = Suite(code_py).run_code(b'Hello, world!', 5, func_name='index', runtime='wasmtime')
|
|
assert 44 == result.returned_value
|
|
|
|
@pytest.mark.slow_integration_test
|
|
def test_length():
|
|
with open('examples/buffer.py', 'r', encoding='ASCII') as fil:
|
|
code_py = "\n" + fil.read()
|
|
|
|
result = Suite(code_py).run_code(b'Hello, world!', func_name='length')
|
|
assert 13 == result.returned_value
|