blob: 3f0270123b020fa5634634f66edfe2a15f53cba7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
discard """
errormsg: "cannot open file: pkgA/module"
"""
# see nims file; comment out `switch("noNimblePath")` there and there would be no error
import pkgA/module as A
import pkgB/module as B
import pkgC/module as C
doAssert pkgATest() == 1, "Simple pkgA-0.1.0 wasn't added to path correctly."
doAssert pkgBTest() == 0xDEADBEEF, "pkgB-#head wasn't picked over pkgB-0.1.0"
doAssert pkgCTest() == 0xDEADBEEF, "pkgC-#head wasn't picked over pkgC-#aa11"
|