Skip to content

Commit ecf594c

Browse files
committed
TEST: added more verbose output
1 parent ebb25c7 commit ecf594c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/tests/quick-test-module.r3

+3-1
Original file line numberDiff line numberDiff line change
@@ -102,13 +102,15 @@ start-file: func [
102102
start-group: func [
103103
title [any-string!]
104104
][
105+
print [" group:" title]
105106
qt-group-name: title
106107
qt-group?: true
107108
]
108109

109110
start-test: func [
110111
title [any-string!]
111112
][
113+
print [" test:" title]
112114
qt-test-name: title
113115
qt-test-assert: 0
114116
qt-file-tests: qt-file-tests + 1
@@ -120,7 +122,7 @@ as-red-only: does [
120122
]
121123

122124
assert: func [
123-
assertion [logic!]
125+
assertion [logic! none!]
124126
][
125127
qt-file-asserts: qt-file-asserts + 1
126128
qt-test-assert: qt-test-assert + 1

0 commit comments

Comments
 (0)