Add missing test files.
This commit is contained in:
parent
95a29197ee
commit
8453a4e2de
15 changed files with 76 additions and 0 deletions
1
tests/packageStructure/a/a.nim
Normal file
1
tests/packageStructure/a/a.nim
Normal file
|
|
@ -0,0 +1 @@
|
|||
|
||||
11
tests/packageStructure/a/a.nimble
Normal file
11
tests/packageStructure/a/a.nimble
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
# Package
|
||||
|
||||
version = "0.1.0"
|
||||
author = "Dominik Picheta"
|
||||
description = "Correctly structured package A"
|
||||
license = "MIT"
|
||||
|
||||
# Dependencies
|
||||
|
||||
requires "nim >= 0.15.3"
|
||||
|
||||
1
tests/packageStructure/b/b.nim
Normal file
1
tests/packageStructure/b/b.nim
Normal file
|
|
@ -0,0 +1 @@
|
|||
|
||||
11
tests/packageStructure/b/b.nimble
Normal file
11
tests/packageStructure/b/b.nimble
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
# Package
|
||||
|
||||
version = "0.1.0"
|
||||
author = "Dominik Picheta"
|
||||
description = "Correctly structured package B"
|
||||
license = "MIT"
|
||||
|
||||
# Dependencies
|
||||
|
||||
requires "nim >= 0.15.3"
|
||||
|
||||
1
tests/packageStructure/b/b/foobar.nim
Normal file
1
tests/packageStructure/b/b/foobar.nim
Normal file
|
|
@ -0,0 +1 @@
|
|||
|
||||
1
tests/packageStructure/c/c.nim
Normal file
1
tests/packageStructure/c/c.nim
Normal file
|
|
@ -0,0 +1 @@
|
|||
|
||||
13
tests/packageStructure/c/c.nimble
Normal file
13
tests/packageStructure/c/c.nimble
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
# Package
|
||||
|
||||
version = "0.1.0"
|
||||
author = "Dominik Picheta"
|
||||
description = "Correctly structured package C"
|
||||
license = "MIT"
|
||||
|
||||
bin = @["c"]
|
||||
|
||||
# Dependencies
|
||||
|
||||
requires "nim >= 0.15.3"
|
||||
|
||||
1
tests/packageStructure/c/cpkg/foobar.nim
Normal file
1
tests/packageStructure/c/cpkg/foobar.nim
Normal file
|
|
@ -0,0 +1 @@
|
|||
|
||||
0
tests/packageStructure/x/incorrect/foobar.nim
Normal file
0
tests/packageStructure/x/incorrect/foobar.nim
Normal file
11
tests/packageStructure/x/x.nimble
Normal file
11
tests/packageStructure/x/x.nimble
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
# Package
|
||||
|
||||
version = "0.1.0"
|
||||
author = "Dominik Picheta"
|
||||
description = "Incorrectly structured package X."
|
||||
license = "MIT"
|
||||
|
||||
# Dependencies
|
||||
|
||||
requires "nim >= 0.15.3"
|
||||
|
||||
0
tests/packageStructure/y/y.nim
Normal file
0
tests/packageStructure/y/y.nim
Normal file
13
tests/packageStructure/y/y.nimble
Normal file
13
tests/packageStructure/y/y.nimble
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
# Package
|
||||
|
||||
version = "0.1.0"
|
||||
author = "Dominik Picheta"
|
||||
description = "Incorrectly structured package Y"
|
||||
license = "MIT"
|
||||
|
||||
bin = @["y"]
|
||||
|
||||
# Dependencies
|
||||
|
||||
requires "nim >= 0.15.3"
|
||||
|
||||
1
tests/packageStructure/y/yWrong/foobar.nim
Normal file
1
tests/packageStructure/y/yWrong/foobar.nim
Normal file
|
|
@ -0,0 +1 @@
|
|||
|
||||
0
tests/packageStructure/z/incorrect.nim
Normal file
0
tests/packageStructure/z/incorrect.nim
Normal file
11
tests/packageStructure/z/z.nimble
Normal file
11
tests/packageStructure/z/z.nimble
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
# Package
|
||||
|
||||
version = "0.1.0"
|
||||
author = "Dominik Picheta"
|
||||
description = "Incorrect package structure Z."
|
||||
license = "MIT"
|
||||
|
||||
# Dependencies
|
||||
|
||||
requires "nim >= 0.15.3"
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue