summaryrefslogtreecommitdiff
path: root/cli-tests/note
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/note
parent2181ec73117f2e18cc622ead6256c8104b631214 (diff)
Move runtime tests from cli-tests/ to cli/tests/
Diffstat (limited to 'cli-tests/note')
-rw-r--r--cli-tests/note/buildfile6
-rw-r--r--cli-tests/note/testscript197
2 files changed, 0 insertions, 203 deletions
diff --git a/cli-tests/note/buildfile b/cli-tests/note/buildfile
deleted file mode 100644
index c8cf49b..0000000
--- a/cli-tests/note/buildfile
+++ /dev/null
@@ -1,6 +0,0 @@
-# file : note/buildfile
-# license : MIT; see accompanying LICENSE file
-
-./: testscript $cli
-
-testscript{*}: test = $cli
diff --git a/cli-tests/note/testscript b/cli-tests/note/testscript
deleted file mode 100644
index 9f00811..0000000
--- a/cli-tests/note/testscript
+++ /dev/null
@@ -1,197 +0,0 @@
-# file : note/testscript
-# license : MIT; see accompanying LICENSE file
-
-: block-basics
-:
-cat <<EOI >=test.cli;
-"
-Leading paragraph.
-
-\N|This is a note block one.|
-
-Interleaving paragraph that is quite long and therefore it may span many
-lines in order to make text easy to read.
-
-\N|This is a note block two that is quite long and therefore it may span many
-lines in order to make text easy to read.|
-
-Trailing paragraph.
-"
-EOI
-$* --generate-html --stdout test.cli >>EOO;
- <p>Leading paragraph.</p>
-
- <div class="note">
- <p>This is a note block one.</p>
- </div>
-
- <p>Interleaving paragraph that is quite long and therefore it may span many
- lines in order to make text easy to read.</p>
-
- <div class="note">
- <p>This is a note block two that is quite long and therefore it may span
- many lines in order to make text easy to read.</p>
- </div>
-
- <p>Trailing paragraph.</p>
-
-EOO
- $* --generate-txt --stdout test.cli >>EOO
-Leading paragraph.
-
-| This is a note block one.
-
-Interleaving paragraph that is quite long and therefore it may span many lines
-in order to make text easy to read.
-
-| This is a note block two that is quite long and therefore it may span many
-| lines in order to make text easy to read.
-
-Trailing paragraph.
-EOO
-
-
-: block-multi-para
-:
-cat <<EOI >=test.cli;
-"
-\N|
-This is a note para one that is quite long and therefore it may span many
-lines in order to make text easy to read.
-
-This is a note para two.
-|
-"
-EOI
-$* --generate-html --stdout test.cli >>EOO;
- <div class="note">
- <p>This is a note para one that is quite long and therefore it may span many
- lines in order to make text easy to read.</p>
-
- <p>This is a note para two.</p>
- </div>
-
-EOO
-$* --generate-txt --stdout test.cli >>EOO
-| This is a note para one that is quite long and therefore it may span many
-| lines in order to make text easy to read.
-|
-| This is a note para two.
-EOO
-
-: block-pre
-:
-cat <<EOI >=test.cli;
-"
-
-\N|
-This is a note para one.
-
-\
-And this is a
-pre-formatter text fragment.
-\
-
-|
-"
-EOI
-$* --generate-html --stdout test.cli >>EOO;
- <div class="note">
- <p>This is a note para one.</p>
-
- <pre>And this is a
-pre-formatter text fragment.</pre>
- </div>
-
-EOO
-$* --generate-txt --stdout test.cli >>EOO
-| This is a note para one.
-|
-| And this is a
-| pre-formatter text fragment.
-EOO
-
-# This is not yet supported (see txt_wrap_lines()).
-#
-#\
-: block-list
-:
-cat <<EOI >=test.cli;
-"
-\N|This is a note para one followed by a list.
-
-\ul|
-
-\li|This is a list item that is quite long and therefore it may span many
-lines in order to make text easy to read.|||
-"
-EOI
-$* --generate-html --stdout test.cli >>EOO;
-EOO
-$* --generate-txt --stdout test.cli >>EOO
-EOO
-#\
-
-: block-in-list
-:
-cat <<EOI >=test.cli;
-"
-\ul|
-
-\li|Normal text para.
-
-\N|This is a note para one that is quite long and therefore it may span many
-lines in order to make text easy to read.|||
-"
-EOI
-$* --generate-html --stdout test.cli >>EOO;
- <ul>
- <li>Normal text para.
-
- <div class="note">
- <p>This is a note para one that is quite long and therefore it may span many
- lines in order to make text easy to read.</p>
- </div></li>
- </ul>
-
-EOO
-$* --generate-txt --stdout test.cli >>EOO
-* Normal text para.
-
- | This is a note para one that is quite long and therefore it may span many
- | lines in order to make text easy to read.
-EOO
-
-
-: span-basics
-:
-cat <<EOI >=test.cli;
-"
-This is normal text. \N{This is a note.} And this is normal text again.
-"
-EOI
-$* --generate-html --stdout test.cli >>EOO;
- <p>This is normal text. <span class="note">This is a note.</span> And this
- is normal text again.</p>
-
-EOO
- $* --generate-txt --stdout test.cli >>EOO
-This is normal text. [Note: This is a note.] And this is normal text again.
-EOO
-
-
-: span-nested-link
-:
-cat <<EOI >=test.cli;
-"
-\N{This is a note with a \l{https://example.com link} inside.}
-"
-EOI
-$* --generate-html --stdout test.cli >>EOO;
- <p><span class="note">This is a note with a <a
- href="https://example.com">link</a> inside.</span></p>
-
-EOO
-$* --generate-txt --stdout test.cli >>EOO
-[Note: This is a note with a link (https://example.com) inside.]
-EOO