diff options
author | Casper Beyer <caspervonb@pm.me> | 2021-09-01 17:31:56 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-01 18:31:56 +0900 |
commit | 77ead8af20180453aa2d0db67d7856641bd5498f (patch) | |
tree | a171be6d325e071b21f5a4718117f9bed12d7eb9 /cli/tests/integration/test_tests.rs | |
parent | c49eee551fdf78ab0230ec30d4537c98dd5d0c80 (diff) |
fix(cli): retain path based test mode inference (#11878)
Diffstat (limited to 'cli/tests/integration/test_tests.rs')
-rw-r--r-- | cli/tests/integration/test_tests.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/tests/integration/test_tests.rs b/cli/tests/integration/test_tests.rs index 971e756a9..d9d1eed45 100644 --- a/cli/tests/integration/test_tests.rs +++ b/cli/tests/integration/test_tests.rs @@ -67,6 +67,12 @@ itest!(doc { output: "test/doc.out", }); +itest!(doc_only { + args: "test --doc --allow-all test/doc_only", + exit_code: 0, + output: "test/doc_only.out", +}); + itest!(markdown { args: "test --doc --allow-all test/markdown.md", exit_code: 1, |