[][src]Macro abscissa_core::status_attr_ok

macro_rules! status_attr_ok {
    ($attr:expr, $msg:expr) => { ... };
    ($attr: expr, $fmt:expr, $($arg:tt)+) => { ... };
}

Print a tab-delimited status attribute (in green if colors are enabled)

# #[macro_use] extern crate abscissa;
# fn main() {
// Print an indented attribute to STDOUT
status_attr_ok!("good", "yep");
# }