Run all the doc tests in files matching a specified glob pattern.
Heavily inspired by doc_comment.
```rust
extern crate benvolio;
doctest_glob!("doctests/*.md"); ```
If you only want to run these tests when running doctests you should do something like the below.
```rust
extern crate benvolio;
mod doctests { doctest_glob!("doctests/*.md"); } ```