2022-04-15 06:31:58 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
2022-06-14 02:23:43 +00:00
|
|
|
from ichor import Interpreter, BOOTSTRAP
|
2022-06-14 03:11:15 +00:00
|
|
|
|
2022-06-01 05:17:32 +00:00
|
|
|
import pytest
|
2022-04-15 06:31:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def vm():
|
|
|
|
return Interpreter(BOOTSTRAP)
|