Skip to content
This repository was archived by the owner on Apr 4, 2024. It is now read-only.

Commit a9c17e8

Browse files
authored
LiteralBoolean tests (#38)
2 parents eb4560c + 961de07 commit a9c17e8

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
from selfie_lib.Literals import LiteralBoolean, Language
2+
from selfie_lib.EscapeLeadingWhitespace import EscapeLeadingWhitespace
3+
4+
5+
def _encode(value: bool, expected: str):
6+
literal_boolean = LiteralBoolean()
7+
actual = literal_boolean.encode(
8+
value, Language.PYTHON, EscapeLeadingWhitespace.NEVER
9+
)
10+
assert actual == expected, f"Expected: {expected}, Got: {actual}"
11+
12+
13+
def _decode(value: str, expected: bool):
14+
literal_boolean = LiteralBoolean()
15+
actual = literal_boolean.parse(value, Language.PYTHON)
16+
assert actual == expected, f"Expected: {expected}, Got: {actual}"
17+
18+
19+
class TestLiteralBoolean:
20+
def test_encode(self):
21+
_encode(True, "True")
22+
_encode(False, "False")
23+
24+
def test_decode(self):
25+
_decode("true", True)
26+
_decode("false", False)

0 commit comments

Comments
 (0)