Skip to content

Commit 26dd2cd

Browse files
committed
FEAT: allowing ANY-STRING! for start-* functions in quick-test-module
(so one can use for example URL as a test title)
1 parent 77e2014 commit 26dd2cd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/tests/quick-test-module.r3

+4-4
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ qt-init-file: does [
7979
]
8080

8181
start-run: func[
82-
title [string!]
82+
title [any-string!]
8383
][
8484
was-quiet: system/options/quiet
8585
system/options/quiet: true
@@ -90,7 +90,7 @@ start-run: func[
9090
]
9191

9292
start-file: func [
93-
title [string!]
93+
title [any-string!]
9494
][
9595
qt-init-file
9696
prin "^[[7m~~~started test~~~^[[0m "
@@ -100,14 +100,14 @@ start-file: func [
100100
]
101101

102102
start-group: func [
103-
title [string!]
103+
title [any-string!]
104104
][
105105
qt-group-name: title
106106
qt-group?: true
107107
]
108108

109109
start-test: func [
110-
title [string!]
110+
title [any-string!]
111111
][
112112
qt-test-name: title
113113
qt-test-assert: 0

0 commit comments

Comments
 (0)