Explorar el Código

Add a test for tag name capitalization.

tags/v0.3
Ben Kurtovic hace 10 años
padre
commit
fdb2762393
Se han modificado 1 ficheros con 7 adiciones y 0 borrados
  1. +7
    -0
      tests/tokenizer/tags.mwtest

+ 7
- 0
tests/tokenizer/tags.mwtest Ver fichero

@@ -548,3 +548,10 @@ name: single_only_double
label: a tag that can only be single; a tag with backslashes at the beginning and end
input: "foo</br/>bar{{baz}}"
output: [Text(text="foo"), TagOpenOpen(invalid=True), Text(text="br"), TagCloseSelfclose(padding=""), Text(text="bar"), TemplateOpen(), Text(text="baz"), TemplateClose()]

---

name: capitalization
label: caps should be ignored within tag names
input: "<NoWiKi>{{test}}</nOwIkI>"
output: [TagOpenOpen(), Text(text="NoWiKi"), TagCloseOpen(padding=""), Text(text="{{test}}"), TagOpenClose(), Text(text="nOwIkI"), TagCloseClose()]

Cargando…
Cancelar
Guardar