7 lines
111 B
Python
7 lines
111 B
Python
from bonobo.structs import Token
|
|
|
|
|
|
def test_token_repr():
|
|
t = Token('Acme')
|
|
assert repr(t) == '<Acme>'
|