From be0708ac9b27c15036e35f294768d23a9f456088 Mon Sep 17 00:00:00 2001 From: Johnathan Corgan Date: Wed, 22 Apr 2026 03:41:12 +0000 Subject: [PATCH] Bring acl test module into the test tree MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit src/node/tests/acl.rs was added by PR #50 but never declared in src/node/tests/mod.rs, so none of its 4 unit tests ran. The tests themselves still compile and pass against current master code — the fix is a one-line mod declaration. Test count goes from 1031 to 1035. No code under test changes. This only adds previously-dormant coverage of the ACL enforcement call sites (outbound connect, inbound msg1, outbound msg2). --- src/node/tests/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/node/tests/mod.rs b/src/node/tests/mod.rs index 1683ed1..0028e81 100644 --- a/src/node/tests/mod.rs +++ b/src/node/tests/mod.rs @@ -4,6 +4,7 @@ use crate::transport::{LinkDirection, TransportAddr, packet_channel}; use crate::utils::index::SessionIndex; use std::time::Duration; +mod acl; #[cfg(target_os = "linux")] mod ble; mod bloom;