-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
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
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,14 +1,45 @@ | ||
$ moon test -p username/hello/x --sort-input --no-parallelize | ||
x blackbox test | ||
x inline test | ||
x whitebox test | ||
Total tests: 3, passed: 3, failed: 0. | ||
|
||
$ moon test -p x --sort-input --no-parallelize | ||
x blackbox test | ||
x inline test | ||
x whitebox test | ||
x_y blackbox test | ||
x_y inline test | ||
x_y whitebox test | ||
Total tests: 6, passed: 6, failed: 0. | ||
|
||
$ moon test -p x/y --sort-input --no-parallelize | ||
x_y blackbox test | ||
x_y inline test | ||
x_y whitebox test | ||
Total tests: 3, passed: 3, failed: 0. | ||
|
||
$ moon test -p u/h/x/y --sort-input --no-parallelize | ||
x_y blackbox test | ||
x_y inline test | ||
x_y whitebox test | ||
Total tests: 3, passed: 3, failed: 0. | ||
|
||
$ moon test -p y --sort-input --no-parallelize | ||
x_y blackbox test | ||
x_y inline test | ||
x_y whitebox test | ||
y blackbox test | ||
y inline test | ||
y whitebox test | ||
Total tests: 6, passed: 6, failed: 0. | ||
|
||
$ moon test -p asdf --sort-input --no-parallelize | ||
|
||
Warning: no test entry found | ||
|
||
$ moon test -p y -f asdf --sort-input --no-parallelize | ||
Total tests: 0, passed: 0, failed: 0. | ||
|
||
Warning: cannot find file `asdf` in package `username/hello/x/y`, `username/hello/y`, --file only support exact matching | ||
|