diff --git a/test/cases/auxiliary/append.jade b/test/cases/auxiliary/append.jade new file mode 100644 index 000000000..ca11d65da --- /dev/null +++ b/test/cases/auxiliary/append.jade @@ -0,0 +1,4 @@ +script(src="foo.js") + +block append content + p bar \ No newline at end of file diff --git a/test/cases/auxiliary/layout.include.append.jade b/test/cases/auxiliary/layout.include.append.jade new file mode 100644 index 000000000..a054d6315 --- /dev/null +++ b/test/cases/auxiliary/layout.include.append.jade @@ -0,0 +1,5 @@ +html + head + include append + body + block content \ No newline at end of file diff --git a/test/cases/layout.append.include.html b/test/cases/layout.append.include.html new file mode 100644 index 000000000..0ddadd3a3 --- /dev/null +++ b/test/cases/layout.append.include.html @@ -0,0 +1,9 @@ + +
+ + + +bar
+baz
+ + \ No newline at end of file diff --git a/test/cases/layout.append.include.jade b/test/cases/layout.append.include.jade new file mode 100644 index 000000000..544af6152 --- /dev/null +++ b/test/cases/layout.append.include.jade @@ -0,0 +1,4 @@ +extends auxiliary/layout.include.append + +block append content + p baz \ No newline at end of file