10 lines
142 B
Python
10 lines
142 B
Python
#!/usr/bin/env python3
|
|
|
|
from ichor import Interpreter, BOOTSTRAP
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture
|
|
def vm():
|
|
return Interpreter(BOOTSTRAP)
|