diff options
Diffstat (limited to 'tests/nimble/tnimblepathdollar_fault.nim')
-rw-r--r-- | tests/nimble/tnimblepathdollar_fault.nim | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/nimble/tnimblepathdollar_fault.nim b/tests/nimble/tnimblepathdollar_fault.nim new file mode 100644 index 000000000..3f0270123 --- /dev/null +++ b/tests/nimble/tnimblepathdollar_fault.nim @@ -0,0 +1,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" |