mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Cite
synced 2024-11-15 02:55:04 +00:00
899775b5ce
IDEs like my PHPStorm trim spaces from the end of the line. It looks like they are not relevant for the test and can as well be removed. Change-Id: I54cb4fdf74dd7174450dcc552b077d388dbac749
22 lines
638 B
Plaintext
22 lines
638 B
Plaintext
# This smoketest requires the #ifeq function to be defined
|
|
!! options
|
|
version=2
|
|
requirements=extension:ParserFunctions
|
|
!! end
|
|
|
|
!! test
|
|
T240248: Erroring parser function shouldn't break references
|
|
!! wikitext
|
|
<ref>something</ref>
|
|
{{#ifeq: {{#expr: string < 5 }} | 1 | true | false or error }}
|
|
<references />
|
|
!! html
|
|
<p><sup id="cite_ref-1" class="reference"><a href="#cite_note-1">[1]</a></sup>
|
|
false or error
|
|
</p>
|
|
<div class="mw-references-wrap"><ol class="references">
|
|
<li id="cite_note-1"><span class="mw-cite-backlink"><a href="#cite_ref-1">↑</a></span> <span class="reference-text">something</span>
|
|
</li>
|
|
</ol></div>
|
|
!! end
|