summary refs log tree commit diff stats
path: root/tests/stdlib/tunittest.nim
Commit message (Expand)AuthorAgeFilesLines
* use doAssert in tests (#16486)flywind2020-12-281-1/+1
* unittest: use defines instead of env vars (#16165)Timothee Cour2020-12-101-0/+1
* make megatest consistent with unjoined tests wrt newlines, honor newlines in ...Timothee Cour2020-11-281-37/+37
* Remove deprecated stuff from stdlib (#14699)Miran2020-06-171-2/+2
* Error -> Defect for defects (#13908)Jacek Sieka2020-04-281-1/+1
* make tests more robust; tests should be deterministic, no randomize() calls i...Araq2019-01-131-1/+0
* closes #5252Araq2018-09-031-0/+19
* Add unittest suite/test name filtersFederico Ceratto2017-11-281-0/+38
* Improved unittest check macro, fixes #5784 (#6446)GULPF2017-09-301-6/+21
* Reduce the scope of stackTrace var (#5583)Ruslan Mustakov2017-03-221-0/+7
* Make use of `used` in unittest (#5410)Fabian Keller2017-02-251-3/+12
* fixes #4494Andreas Rumpf2016-07-221-0/+6
* moved random procs from math to its own module (breaking change)Andreas Rumpf2016-05-301-1/+1
* fixing unittestPeter Mora2015-10-061-1/+1
* make testSetupIMPL and testTeardownIMPL non-publicfenekku2015-08-121-0/+45
* Fix multiple requires in a testNycto2015-08-011-0/+5
* document unittest.nim + code agreementfenekku2015-07-091-0/+14
* Fix #964, fix #1384Flaviu Tamas2015-05-261-0/+16
* Don't inspect typedescsFlaviu Tamas2015-05-261-0/+5
revious revision' href='/akkartik/mu/blame/shell/data.limg?h=main&id=76ef912eb25cf6eccac43253ad1184d6fd502426'>^
3efbe5bf ^
f1746954 ^
deb61036 ^

c1fff5ec ^

deb61036 ^

9fd3111e ^
fa262499 ^
77f347c1 ^



deb61036 ^

9fd3111e ^
deb61036 ^
9fd3111e ^
deb61036 ^
3fd3f3a1 ^
deb61036 ^

9fd3111e ^
deb61036 ^
9fd3111e ^
deb61036 ^


9fd3111e ^
f1746954 ^
9fd3111e ^
deb61036 ^
fa262499 ^




77f347c1 ^

0f071ae9 ^

fa262499 ^
0f071ae9 ^
deb61036 ^
9fd3111e ^
deb61036 ^

e941dd50 ^
f1746954 ^
e941dd50 ^
f1746954 ^
deb61036 ^




e941dd50 ^
deb61036 ^


9fd3111e ^
deb61036 ^

9fd3111e ^
deb61036 ^


9fd3111e ^
deb61036 ^

9fd3111e ^
deb61036 ^
f1746954 ^


deb61036 ^
3ac99829 ^


deb61036 ^

f1746954 ^
92fb55d5 ^
cfa1bac8 ^
deb61036 ^
f1746954 ^
92fb55d5 ^
cfa1bac8 ^
b195921b ^



deb61036 ^
7045af7a ^

f1746954 ^






7045af7a ^
f1746954 ^






7045af7a ^

f1746954 ^
7045af7a ^
f1746954 ^
deb61036 ^
ecc763f0 ^

f1746954 ^
ecc763f0 ^

deb61036 ^


f1746954 ^

deb61036 ^
cfa1bac8 ^
deb61036 ^
b195921b ^
f1746954 ^
7045af7a ^
eee222f1 ^
6f6f6384 ^

f1746954 ^



7045af7a ^
f1746954 ^
cfa1bac8 ^
a25e4c1a ^
f1746954 ^
cfa1bac8 ^
a25e4c1a ^
6f6f6384 ^
deb61036 ^
a25e4c1a ^
deb61036 ^

a25e4c1a ^
deb61036 ^

b195921b ^
deb61036 ^
f1746954 ^
deb61036 ^
f1746954 ^

cfa1bac8 ^

f1746954 ^
deb61036 ^

fa8d337d ^
f1746954 ^
fa8d337d ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199