afia/
lib.rs

1//! Our public CLI that we ship to users.
2
3#![deny(missing_docs)]
4
5#[cfg(test)]
6mod intentionally_here {
7    //! Keeping this here makes it easy to run all of the crate's tests from within the IDE.
8    //! You can call run tests in your IDE from the lib.rs file
9    //! (as long as your cursor is outside of this test module), which will then run all
10    //! of the tests in the crate (since every module is a descendent of lib.rs.)
11
12    #[test]
13    fn intentionally_here() {}
14}