aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/mozart-core/src/console.rs
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-05-05 17:29:12 +0900
committernsfisis <nsfisis@gmail.com>2026-05-05 17:29:12 +0900
commit49b0884701a84731652fc934d428932ff6029bd4 (patch)
tree7477029b8ed686b9b3b06d960cab2b54ba87b579 /crates/mozart-core/src/console.rs
parent4623874d1c95414dcd5ae194d2561f2d98b40982 (diff)
downloadphp-mozart-49b0884701a84731652fc934d428932ff6029bd4.tar.gz
php-mozart-49b0884701a84731652fc934d428932ff6029bd4.tar.zst
php-mozart-49b0884701a84731652fc934d428932ff6029bd4.zip
chore: remove redundant comments
Diffstat (limited to 'crates/mozart-core/src/console.rs')
-rw-r--r--crates/mozart-core/src/console.rs8
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,