fix: remove unnecessary cfg(test) attributes from test modules

Co-authored-by: aider (openai/andrew/openrouter/qwen/qwen3-coder) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-08-14 12:27:25 -03:00
parent 2713f2b127
commit a0e79bc90a
2 changed files with 14 additions and 8 deletions

14
src/lib.rs Normal file
View File

@@ -0,0 +1,14 @@
// Re-export modules for testing
pub mod common;
pub mod compression_engine;
pub mod db;
pub mod meta_plugin;
pub mod modes;
#[cfg(test)]
mod tests {
#[test]
fn test_library_structure() {
assert!(true);
}
}