sharenet/backend/crates/integration-tests/src/lib.rs
continuist 61117b6fa6
Some checks are pending
CI/CD Pipeline / Test Backend (push) Waiting to run
CI/CD Pipeline / Test Frontend (push) Waiting to run
CI/CD Pipeline / Build and Push Docker Images (push) Blocked by required conditions
CI/CD Pipeline / Deploy to Production (push) Blocked by required conditions
Created test_setup.rs file that consolidates test setup code for interface tests, including db migrations
2025-06-28 01:57:12 -04:00

27 lines
No EOL
642 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>
*/
pub mod test_setup;
#[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;