From cdc9c3b7ad128aa6658d4198083666179c7459a3 Mon Sep 17 00:00:00 2001 From: Daniel Szoke Date: Fri, 8 Aug 2025 14:10:44 +0200 Subject: [PATCH] test: Test `logs` help message We have the `.trycmd` file there already, but we never test it. --- tests/integration/logs.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/integration/logs.rs b/tests/integration/logs.rs index ac25ff6c15..1c08d11392 100644 --- a/tests/integration/logs.rs +++ b/tests/integration/logs.rs @@ -37,3 +37,8 @@ fn command_logs_zero_max_rows() { fn command_logs_list_help() { TestManager::new().register_trycmd_test("logs/logs-list-help.trycmd"); } + +#[test] +fn command_logs_help() { + TestManager::new().register_trycmd_test("logs/logs-help.trycmd"); +}