From 6b3fd1d140d122a46a158f4569b48556621b261e Mon Sep 17 00:00:00 2001 From: Shady Khalifa Date: Wed, 27 Nov 2024 19:06:39 +0200 Subject: [PATCH] chore: add dummy test for the CI --- blueprint-manager/src/lib.rs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/blueprint-manager/src/lib.rs b/blueprint-manager/src/lib.rs index 12774529..7168062c 100644 --- a/blueprint-manager/src/lib.rs +++ b/blueprint-manager/src/lib.rs @@ -6,3 +6,11 @@ pub mod protocols; pub mod sdk; pub mod sources; pub use executor::run_blueprint_manager; + +#[cfg(test)] +mod tests { + #[test] + fn it_works() { + assert_eq!(2 + 2, 4); + } +}