diff options
Diffstat (limited to 'crates/mozart-core/src/console.rs')
| -rw-r--r-- | crates/mozart-core/src/console.rs | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/crates/mozart-core/src/console.rs b/crates/mozart-core/src/console.rs index e37ff23..fb7c9b9 100644 --- a/crates/mozart-core/src/console.rs +++ b/crates/mozart-core/src/console.rs @@ -267,8 +267,6 @@ impl Console { mod tests { use super::*; - // ── Verbosity::from_flags ─────────────────────────────────────────────── - #[test] fn test_verbosity_quiet_takes_priority() { assert_eq!(Verbosity::from_flags(3, true), Verbosity::Quiet); @@ -296,8 +294,6 @@ mod tests { assert_eq!(Verbosity::from_flags(10, false), Verbosity::Debug); } - // ── Verbosity ordering ────────────────────────────────────────────────── - #[test] fn test_verbosity_ordering() { assert!(Verbosity::Quiet < Verbosity::Normal); @@ -306,8 +302,6 @@ mod tests { assert!(Verbosity::VeryVerbose < Verbosity::Debug); } - // ── Console::resolve_decorated ────────────────────────────────────────── - #[test] fn test_resolve_decorated_no_ansi_wins() { assert!(!Console::resolve_decorated(true, true)); @@ -319,8 +313,6 @@ mod tests { assert!(Console::resolve_decorated(true, false)); } - // ── Console query methods ─────────────────────────────────────────────── - fn make_console(verbosity: Verbosity) -> Console { Console { interactive: false, |
