This commit is contained in:
Reid 'arrdem' McKenzie 2021-09-19 18:05:22 -06:00
commit a6e59b2e0c
28 changed files with 195 additions and 57 deletions

View file

@ -2,7 +2,10 @@
Pytest fixtures.
"""
from lilith.parser import GRAMMAR, parser_with_transformer
from lilith.parser import (
GRAMMAR,
parser_with_transformer,
)
import pytest

View file

@ -2,7 +2,11 @@
"""
from lilith.interpreter import Bindings, eval, Runtime
from lilith.interpreter import (
Bindings,
eval,
Runtime,
)
from lilith.parser import Apply, Args, Symbol
from lilith.reader import Def, Module
import pytest

View file

@ -1,6 +1,12 @@
"""tests covering the Lilith parser."""
from lilith.parser import Apply, Args, Block, parse_buffer, Symbol
from lilith.parser import (
Apply,
Args,
Block,
parse_buffer,
Symbol,
)
import pytest

View file

@ -1,6 +1,11 @@
"""Tests covering the reader."""
from lilith.parser import Apply, Args, Block, Symbol
from lilith.parser import (
Apply,
Args,
Block,
Symbol,
)
from lilith.reader import Def, Module, read_buffer
import pytest