// Tests for mecha10_cli::handlers::format
use mecha10_cli::handlers::format::*;
#[test]
fn test_format_args() {
let args = FormatArgs { check: false };
assert!(!args.check);
}
#[test]
fn test_format_args_check() {
let args = FormatArgs { check: true };
assert!(args.check);
}