ソースを参照

Tokenizer tests for comments.

tags/v0.2
Ben Kurtovic 11年前
コミット
9e527146c7
1個のファイルの変更39行の追加0行の削除
  1. +39
    -0
      tests/tokenizer/comments.mwtest

+ 39
- 0
tests/tokenizer/comments.mwtest ファイルの表示

@@ -0,0 +1,39 @@
name: blank
label: a blank comment
input: "<!---->"
output: [CommentStart(), CommentEnd()]

---

name: basic
label: a basic comment
input: "<!-- comment -->"
output: [CommentStart(), Text(text=" comment "), CommentEnd()]

---

name: tons_of_nonsense
label: a comment with tons of ignorable garbage in it
input: "<!-- foo{{bar}}[[basé\n\n]{}{}{}{}]{{{{{{haha{{--a>aa<!--aa -->"
output: [CommentStart(), Text(text=" foo{{bar}}[[basé\n\n]{}{}{}{}]{{{{{{haha{{--a>aa<!--aa "), CommentEnd()]

---

name: incomplete_blank
label: a comment that doesn't close
input: "<!--"
output: [Text(text="<!--")]

---

name: incomplete_text
label: a comment that doesn't close, with text
input: "<!-- foo"
output: [Text(text="<!-- foo")]

---

name: incomplete_partial_close
label: a comment that doesn't close, with a partial close
input: "<!-- foo --\x00>"
output: [Text(text="<!-- foo --\x00>")]

読み込み中…
キャンセル
保存