Doesn't actually fix those bugs, but they can no longer be reproduced. Test
cases have been added.
This commit is contained in:
Flaviu Tamas
2015-05-26 18:32:10 -04:00
parent c9616897f0
commit 3daef85d6e

View File

@@ -1,4 +1,20 @@
import unittest
proc doThings(spuds: var int): int =
spuds = 24
return 99
test "#964":
var spuds = 0
check doThings(spuds) == 99
check spuds == 24
from strutils import toUpper
test "#1384":
check(@["hello", "world"].map(toUpper) == @["HELLO", "WORLD"])
import options
test "unittest typedescs":
check(none(int) == none(int))