瀏覽代碼

Make a couple tests harder.

tags/v0.3
Ben Kurtovic 10 年之前
父節點
當前提交
072b956a07
共有 1 個文件被更改,包括 4 次插入4 次删除
  1. +4
    -4
      tests/tokenizer/external_links.mwtest

+ 4
- 4
tests/tokenizer/external_links.mwtest 查看文件

@@ -91,8 +91,8 @@ output: [ExternalLinkOpen(brackets=False), Text(text="http://example.com"), Exte

name: colons_after
label: colons after a free link that are excluded
input: "http://example.com/foo:bar:::baz:::"
output: [ExternalLinkOpen(brackets=False), Text(text="http://example.com/foo:bar:::baz"), ExternalLinkClose(), Text(text=":::")]
input: "http://example.com/foo:bar.:;baz!?,"
output: [ExternalLinkOpen(brackets=False), Text(text="http://example.com/foo:bar.:;baz"), ExternalLinkClose(), Text(text="!?,")]

---

@@ -126,8 +126,8 @@ output: [ExternalLinkOpen(brackets=True), Text(text="http://example.com."), Exte

name: brackets_colons_after
label: colons after a bracket-enclosed link that are included
input: "[http://example.com/foo:bar:::baz::: Example]"
output: [ExternalLinkOpen(brackets=True), Text(text="http://example.com/foo:bar:::baz:::"), ExternalLinkSeparator(), Text(text="Example"), ExternalLinkClose()]
input: "[http://example.com/foo:bar.:;baz!?, Example]"
output: [ExternalLinkOpen(brackets=True), Text(text="http://example.com/foo:bar.:;baz!?,"), ExternalLinkSeparator(), Text(text="Example"), ExternalLinkClose()]

---



Loading…
取消
儲存