forked from nim-lang/nimble
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replaces
babel
files in tests by nimble
Tests without fully loaded PkgInfo should pass now
- Loading branch information
Showing
3 changed files
with
14 additions
and
13 deletions.
There are no files selected for viewing
9 changes: 5 additions & 4 deletions
9
tests/issue27/a/issue27a.babel → tests/issue27/a/issue27a.nimble
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
[Package] | ||
name = "issue27a" | ||
# Package | ||
|
||
version = "0.1.0" | ||
author = "Dominik Picheta" | ||
description = "Dependency A for Issue 27" | ||
license = "BSD" | ||
|
||
[Deps] | ||
Requires: "nimrod >= 0.9.3, issue27b" | ||
# Dependencies | ||
|
||
requires "nim >= 0.9.3, issue27b" |
9 changes: 5 additions & 4 deletions
9
tests/issue27/b/issue27b.babel → tests/issue27/b/issue27b.nimble
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
[Package] | ||
name = "issue27b" | ||
# Package | ||
|
||
version = "0.1.0" | ||
author = "Dominik Picheta" | ||
description = "Dependency B for Issue 27" | ||
license = "BSD" | ||
|
||
[Deps] | ||
Requires: "nimrod >= 0.9.3" | ||
# Dependencies | ||
|
||
requires "nim >= 0.9.3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
[Package] | ||
name = "issue27" | ||
# Package | ||
|
||
version = "0.1.0" | ||
author = "Dominik Picheta" | ||
description = "Test package for Issue 27" | ||
license = "BSD" | ||
|
||
bin = "issue27" | ||
# Dependencies | ||
|
||
[Deps] | ||
Requires: "nimrod >= 0.9.3, issue27a" | ||
requires "nim >= 0.9.3, issue27a" |