Johan B.W. de Vries 14b8065974 IntType3
2023-01-07 16:20:33 +01:00

13 lines
284 B
Python

import pytest
from ..helpers import Suite
@pytest.mark.slow_integration_test
def test_fib():
with open('./examples/fib.py', 'r', encoding='UTF-8') as fil:
code_py = "\n" + fil.read()
result = Suite(code_py).run_code()
assert 102334155 == result.returned_value