summaryrefslogtreecommitdiff
path: root/cli-tests/headings/testscript
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2021-09-28 13:48:18 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2021-09-28 13:48:18 +0200
commiteebdf078fcbd5b69e0ed70adcb3c6d1d0c50343e (patch)
treed475bdfe4e54104fb4769f80bd1aec34309ee012 /cli-tests/headings/testscript
parent2181ec73117f2e18cc622ead6256c8104b631214 (diff)
Move runtime tests from cli-tests/ to cli/tests/
Diffstat (limited to 'cli-tests/headings/testscript')
-rw-r--r--cli-tests/headings/testscript36
1 files changed, 0 insertions, 36 deletions
diff --git a/cli-tests/headings/testscript b/cli-tests/headings/testscript
deleted file mode 100644
index 0efb7ae..0000000
--- a/cli-tests/headings/testscript
+++ /dev/null
@@ -1,36 +0,0 @@
-# file : headings/testscript
-# license : MIT; see accompanying LICENSE file
-
-: auto-headings
-:
-: Note that auto-headings break if we split into multiple doc strings.
-:
-cat <<EOI >=map.cli;
-"
-\h1|Heading 1|
-
-\h|Heading 1.1|
-
-\h2|Heading 1.1.1|
-
-\h|Heading 1.2|
-
-\h2|Heading 1.2.1|
-
-\h1|Heading 2|
-"
-EOI
-$* --generate-html --stdout map.cli >>EOO
- <h1>Heading 1</h1>
-
- <h2>Heading 1.1</h2>
-
- <h3>Heading 1.1.1</h3>
-
- <h2>Heading 1.2</h2>
-
- <h3>Heading 1.2.1</h3>
-
- <h1>Heading 2</h1>
-
-EOO