summaryrefslogtreecommitdiff
path: root/tests/typ/visualize/line.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/visualize/line.typ
parent72dd79210602ecc799726fc096b078afbb47f299 (diff)
Better test runner (#3922)
Diffstat (limited to 'tests/typ/visualize/line.typ')
-rw-r--r--tests/typ/visualize/line.typ51
1 files changed, 0 insertions, 51 deletions
diff --git a/tests/typ/visualize/line.typ b/tests/typ/visualize/line.typ
deleted file mode 100644
index 8c405932..00000000
--- a/tests/typ/visualize/line.typ
+++ /dev/null
@@ -1,51 +0,0 @@
-// Test lines.
-
----
-#set page(height: 60pt)
-#box({
- set line(stroke: 0.75pt)
- place(line(end: (0.4em, 0pt)))
- place(line(start: (0pt, 0.4em), end: (0pt, 0pt)))
- line(end: (0.6em, 0.6em))
-}) Hello #box(line(length: 1cm))!
-
-#line(end: (70%, 50%))
-
----
-// Test the angle argument and positioning.
-
-#set page(fill: rgb("0B1026"))
-#set line(stroke: white)
-
-#let star(size, ..args) = box(width: size, height: size)[
- #set text(spacing: 0%)
- #set line(..args)
- #set align(left)
- #v(30%)
- #place(line(length: +30%, start: (09.0%, 02%)))
- #place(line(length: +30%, start: (38.7%, 02%), angle: -72deg))
- #place(line(length: +30%, start: (57.5%, 02%), angle: 252deg))
- #place(line(length: +30%, start: (57.3%, 02%)))
- #place(line(length: -30%, start: (88.0%, 02%), angle: -36deg))
- #place(line(length: +30%, start: (73.3%, 48%), angle: 252deg))
- #place(line(length: -30%, start: (73.5%, 48%), angle: 36deg))
- #place(line(length: +30%, start: (25.4%, 48%), angle: -36deg))
- #place(line(length: +30%, start: (25.6%, 48%), angle: -72deg))
- #place(line(length: +32%, start: (8.50%, 02%), angle: 34deg))
-]
-
-#align(center, grid(
- columns: 3,
- column-gutter: 10pt,
- ..((star(20pt, stroke: 0.5pt),) * 9)
-))
-
----
-// Test errors.
-
-// Error: 12-19 point array must contain exactly two entries
-#line(end: (50pt,))
-
----
-// Error: 14-26 expected relative length, found angle
-#line(start: (3deg, 10pt), length: 5cm)