diff options
author | Simon THOBY <git@nightmared.fr> | 2021-11-07 16:34:21 +0000 |
---|---|---|
committer | Simon THOBY <git@nightmared.fr> | 2021-11-07 16:34:21 +0000 |
commit | c708cc2191aecef86c134174165126f93230c684 (patch) | |
tree | 041513f9126264160a1a6d868b91462c852ee470 /rustables/src/lib.rs | |
parent | 46b22d88c36863851e4b27efa767d28c8aeecfe0 (diff) | |
parent | 55d9bf885e009953a0001062b2b60c21e8322a31 (diff) |
Merge branch 'test-suite' into 'master'
Expression tests
See merge request rustwall/rustables!6
Diffstat (limited to 'rustables/src/lib.rs')
-rw-r--r-- | rustables/src/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/rustables/src/lib.rs b/rustables/src/lib.rs index 1397245..d94c753 100644 --- a/rustables/src/lib.rs +++ b/rustables/src/lib.rs @@ -118,6 +118,9 @@ pub use rule::{get_rules_cb, list_rules_for_chain}; pub mod set; +#[cfg(test)] +mod tests; + /// The type of the message as it's sent to netfilter. A message consists of an object, such as a /// [`Table`], [`Chain`] or [`Rule`] for example, and a [`MsgType`] to describe what to do with /// that object. If a [`Table`] object is sent with `MsgType::Add` then that table will be added |