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