Fmt.
This commit is contained in:
parent
223fd5688b
commit
a6e59b2e0c
28 changed files with 195 additions and 57 deletions
projects/lilith/test/python
|
@ -2,7 +2,10 @@
|
|||
Pytest fixtures.
|
||||
"""
|
||||
|
||||
from lilith.parser import GRAMMAR, parser_with_transformer
|
||||
from lilith.parser import (
|
||||
GRAMMAR,
|
||||
parser_with_transformer,
|
||||
)
|
||||
import pytest
|
||||
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue