mirror of
https://github.com/ralsina/tartrazine.git
synced 2025-06-19 06:33:06 -03:00
Reorganize tests into a real spec suite
This commit is contained in:
40
spec/unsupported_lexers/robotframework/test_basic.txt
Normal file
40
spec/unsupported_lexers/robotframework/test_basic.txt
Normal file
@ -0,0 +1,40 @@
|
||||
---input---
|
||||
*** Variables ***
|
||||
${test}[]
|
||||
|
||||
*** Variables ***
|
||||
@{test}[]
|
||||
|
||||
*** Variables ***
|
||||
&{test}[]
|
||||
|
||||
---tokens---
|
||||
'*** Variables ***' Generic.Heading
|
||||
'\n' Punctuation
|
||||
|
||||
'${test}[]' Error
|
||||
'\n' Punctuation
|
||||
|
||||
'\n' Punctuation
|
||||
|
||||
'*** Variables ***' Generic.Heading
|
||||
'\n' Punctuation
|
||||
|
||||
'@{' Punctuation
|
||||
'test' Name.Variable
|
||||
'}' Punctuation
|
||||
'[' Punctuation
|
||||
']' Punctuation
|
||||
'\n' Punctuation
|
||||
|
||||
'\n' Punctuation
|
||||
|
||||
'*** Variables ***' Generic.Heading
|
||||
'\n' Punctuation
|
||||
|
||||
'&{' Punctuation
|
||||
'test' Name.Variable
|
||||
'}' Punctuation
|
||||
'[' Punctuation
|
||||
']' Punctuation
|
||||
'\n' Punctuation
|
Reference in New Issue
Block a user