-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Rewrite to take full advantage of Fish 3.x. - No Awk or external commands. - No syntax breaking changes. - About 1/3 less code. - Remove $current_dirname and $current_filename variables in favor of (status dirname) or (status filename). - Escape actual and expected arguments via string escape. - This makes it possible to present your output in the same line without breaking TAP. - Add a new `at` error field to indicate the file name and line where a test failed. - Add new documentation. - Run tests serially. - To enable parallelism, we also had to buffer output from each test file to produce correct TAP, making pipelines like `fishtape | report` less useful. - Preprocessing files is no longer necessary, making tests behave more predictably. WYSIWYG. - Net result is faster tests for typical usage since there's no async overhead. - Remove `setup` and `teardown` functions. - No longer needed when we run tests serially. - The best way to do work before and after a test is is right there in your test file. - Close #53.
- Loading branch information
1 parent
6f93f16
commit 641f2b0
Showing
14 changed files
with
212 additions
and
364 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
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,2 +1,2 @@ | ||
complete --command fishtape --long version --description "Print version" | ||
complete --command fishtape --long help --description "Print help" | ||
complete --command fishtape --short v --long version --description "Print version" | ||
complete --command fishtape --short h --long help --description "Print help" |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.