mecha10-cli 0.1.47

Mecha10 CLI tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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);
}