This file contains hidden or 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 is a temporary fix for a bug in coverage reports where awaits show as not covered. | |
/// | |
/// The idea is that once the bug is fixed, you can easily remove all `.fix_cov()` calls and imports, | |
/// delete the `fix_coverage.rs` and eveything works as it previouslt did. | |
/// | |
/// To use it just simply import the `FixCov` trait and add `.fix_cov` to any future, before the `.await`. | |
/// | |
/// # Example | |
/// ``` | |
/// use FixCov; |