mockiato 0.9.5

A strict, yet friendly mocking library for Rust 2018
Documentation
#![allow(clippy::blacklisted_name)]

use mockiato::mockable;

#[mockable]
trait IsFriendly {
    fn is_friendly(&self, _foo: &str) -> bool {
        true
    }
}