mirror of
https://github.com/ralsina/tartrazine.git
synced 2025-06-19 14:43:05 -03:00
Reorganize tests into a real spec suite
This commit is contained in:
8
spec/unsupported_lexers/cfm/test_basic_comment.txt
Normal file
8
spec/unsupported_lexers/cfm/test_basic_comment.txt
Normal file
@ -0,0 +1,8 @@
|
||||
---input---
|
||||
<!--- cfcomment --->
|
||||
|
||||
---tokens---
|
||||
'<!---' Comment.Multiline
|
||||
' cfcomment ' Comment.Multiline
|
||||
'--->' Comment.Multiline
|
||||
'\n' Text
|
12
spec/unsupported_lexers/cfm/test_nested_comment.txt
Normal file
12
spec/unsupported_lexers/cfm/test_nested_comment.txt
Normal file
@ -0,0 +1,12 @@
|
||||
---input---
|
||||
<!--- nested <!--- cfcomment ---> --->
|
||||
|
||||
---tokens---
|
||||
'<!---' Comment.Multiline
|
||||
' nested ' Comment.Multiline
|
||||
'<!---' Comment.Multiline
|
||||
' cfcomment ' Comment.Multiline
|
||||
'--->' Comment.Multiline
|
||||
' ' Comment.Multiline
|
||||
'--->' Comment.Multiline
|
||||
'\n' Text
|
Reference in New Issue
Block a user