テスト追加

This commit is contained in:
usbharu 2024-11-14 12:35:47 +09:00
parent 6659720f2c
commit b61a40ea32
Signed by: usbharu
GPG Key ID: 95CBCF7046307B77
1 changed files with 15 additions and 0 deletions

View File

@ -805,4 +805,19 @@ class LexerTest {
), actual ), actual
) )
} }
@Test
fun コードブロックかと思ったらアスタリスク() {
val lexer = Lexer()
val actual = lexer.lex("aiueo ```abcd*a*")
println(actual)
assertContentEquals(
listOf(
Text("aiueo"), Whitespace(1, ' '), Text("```abcd")
), actual
)
}
} }