mirror of
https://github.com/ralsina/tartrazine.git
synced 2025-06-19 22:53:05 -03:00
Reorganize tests into a real spec suite
This commit is contained in:
28
spec/tests/python/test_pep_515.txt
Normal file
28
spec/tests/python/test_pep_515.txt
Normal file
@ -0,0 +1,28 @@
|
||||
# Tests that the lexer can parse numeric literals with underscores
|
||||
|
||||
---input---
|
||||
1_000_000
|
||||
1_000.000_001
|
||||
1_000e1_000j
|
||||
0xCAFE_F00D
|
||||
0b_0011_1111_0100_1110
|
||||
0o_777_123
|
||||
|
||||
---tokens---
|
||||
'1_000_000' Literal.Number.Integer
|
||||
'\n' Text.Whitespace
|
||||
|
||||
'1_000.000_001' Literal.Number.Float
|
||||
'\n' Text.Whitespace
|
||||
|
||||
'1_000e1_000j' Literal.Number.Float
|
||||
'\n' Text.Whitespace
|
||||
|
||||
'0xCAFE_F00D' Literal.Number.Hex
|
||||
'\n' Text.Whitespace
|
||||
|
||||
'0b_0011_1111_0100_1110' Literal.Number.Bin
|
||||
'\n' Text.Whitespace
|
||||
|
||||
'0o_777_123' Literal.Number.Oct
|
||||
'\n' Text.Whitespace
|
Reference in New Issue
Block a user