sharenet/backend/crates/integration-tests/src/lib.rs

25 lines
No EOL
621 B
Rust

/*
* This file is part of Sharenet.
*
* Sharenet is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.
*
* You may obtain a copy of the license at:
* https://creativecommons.org/licenses/by-nc-sa/4.0/
*
* Copyright (c) 2024 Continuist <continuist02@gmail.com>
*/
#[cfg(test)]
pub mod api_postgres_tests;
#[cfg(test)]
pub mod cli_tests;
#[cfg(test)]
pub mod cross_repository_consistency_tests;
#[cfg(test)]
pub mod cross_interface_consistency_tests;
#[cfg(test)]
pub mod migration_tests;
#[cfg(test)]
pub mod performance_tests;
#[cfg(test)]
pub mod tui_tests;