summaryrefslogtreecommitdiff
path: root/tests/typ/layout/par-justify.typ
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2024-04-13 10:39:45 +0200
committerGitHub <noreply@github.com>2024-04-13 08:39:45 +0000
commit020294fca9a7065d4b9cf4e677f606ebaaa29b00 (patch)
treec0027ad22046e2726c22298461327823d6b88d53 /tests/typ/layout/par-justify.typ
parent72dd79210602ecc799726fc096b078afbb47f299 (diff)
Better test runner (#3922)
Diffstat (limited to 'tests/typ/layout/par-justify.typ')
-rw-r--r--tests/typ/layout/par-justify.typ65
1 files changed, 0 insertions, 65 deletions
diff --git a/tests/typ/layout/par-justify.typ b/tests/typ/layout/par-justify.typ
deleted file mode 100644
index 69576c7d..00000000
--- a/tests/typ/layout/par-justify.typ
+++ /dev/null
@@ -1,65 +0,0 @@
-
----
-#set page(width: 180pt)
-#set block(spacing: 5pt)
-#set par(justify: true, first-line-indent: 14pt, leading: 5pt)
-
-This text is justified, meaning that spaces are stretched so that the text
-forms a "block" with flush edges at both sides.
-
-First line indents and hyphenation play nicely with justified text.
-
----
-// Test that lines with hard breaks aren't justified.
-#set par(justify: true)
-A B C \
-D
-
----
-// Test forced justification with justified break.
-A B C #linebreak(justify: true)
-D E F #linebreak(justify: true)
-
----
-// Test that there are no hick-ups with justification enabled and
-// basically empty paragraph.
-#set par(justify: true)
-#""
-
----
-// Test that the last line can be shrunk
-#set page(width: 155pt)
-#set par(justify: true)
-This text can be fitted in one line.
-
----
-// Test that runts are avoided when it's not too costly to do so.
-#set page(width: 124pt)
-#set par(justify: true)
-#for i in range(0, 20) {
- "a b c "
-}
-#"d"
-
----
-// Test that justification cannot lead to a leading space
-#set par(justify: true)
-#set text(size: 12pt)
-#set page(width: 45mm, height: auto)
-
-lorem ipsum 1234, lorem ipsum dolor sit amet
-
-#" leading whitespace should still be displayed"
-
----
-// Test that justification doesn't break code blocks
-
-#set par(justify: true)
-
-```cpp
-int main() {
- printf("Hello world\n");
- return 0;
-}
-```
-