We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have a folder full of documentation I'd like to test using doc_comment. At the moment, I have to include every file explicitly:
doc_comment
doctest!("../docs/README.md"); doctest!("../docs/conventions.md"); doctest!("../docs/database.md"); doctest!("../docs/testing/mocks.md"); // ...
I'd love a way to include all files from a folder, maybe using globs or by specifying file extensions:
doctest_directory!("../docs/**/*.md");
Could you imagine such a feature for doc_comment? Do you know of another way to do this conveniently?
The text was updated successfully, but these errors were encountered:
That could be a nice addition indeed.
Sorry, something went wrong.
No branches or pull requests
I have a folder full of documentation I'd like to test using
doc_comment
. At the moment, I have to include every file explicitly:I'd love a way to include all files from a folder, maybe using globs or by specifying file extensions:
Could you imagine such a feature for
doc_comment
? Do you know of another way to do this conveniently?The text was updated successfully, but these errors were encountered: