summary refs log tree commit diff stats
path: root/tests/system/toString.nim
Commit message (Expand)AuthorAgeFilesLines
* Improved collection-to-string behavior (#6825)Fabian Keller2017-12-141-4/+4
* make tests green againAraq2017-11-011-2/+2
* make tests green again; closes #5861Andreas Rumpf2017-10-101-1/+1
* reverted genEchoArne Döring2017-08-081-1/+2
* don't filter '\0' characters in string generationArne Döring2017-08-071-1/+2
* prevent null characters in $ on collections of charArne Döring2017-07-241-3/+1
* made toString test assert basedArne Döring2017-07-241-33/+21
* removed newString proc again, reverted some unnecesary changesArne Döring2017-07-241-9/+3
* arrays can now be printedArne Döring2017-07-241-2/+31
* Fixes #2889. Merges *tostring tests in tests/system.Dominik Picheta2015-09-231-1/+34
* asynchttpserver compiles again; made some tests greenAraq2014-08-131-5/+3
* added `$` for arraysSimon Hafner2014-03-311-1/+5
* explicit firstElement for `$` in collectionsSimon Hafner2014-02-111-1/+3
* Added `$` for seqSimon Hafner2014-02-111-0/+5
id='n169' href='#n169'>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 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360