Browse Source

Alter a test that imitates strange (incorrect?) MediaWiki behavior.

tags/v0.3
Ben Kurtovic 10 years ago
parent
commit
be505465c0
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      tests/tokenizer/external_links.mwtest

+ 2
- 2
tests/tokenizer/external_links.mwtest View File

@@ -146,9 +146,9 @@ output: [ExternalLinkOpen(brackets=True), Text(text="http://example.(com)"), Ext
---

name: brackets_open_bracket_inside
label: an open bracket inside a bracket-enclosed link that causes it to switch to the title context abruptly
label: an open bracket inside a bracket-enclosed link that is also included
input: "[http://foobar[baz.com Example]"
output: [ExternalLinkOpen(brackets=True), Text(text="http://foobar"), ExternalLinkSeparator(), Text(text="[baz.com Example"), ExternalLinkClose()]
output: [ExternalLinkOpen(brackets=True), Text(text="http://foobar[baz.com"), ExternalLinkSeparator(), Text(text="Example"), ExternalLinkClose()]

---



Loading…
Cancel
Save