From f9c9719415e1634463a3de52a766e25d2cc44065 Mon Sep 17 00:00:00 2001 From: Lennart <18233294+lennart-k@users.noreply.github.com> Date: Wed, 6 Nov 2024 17:54:03 +0100 Subject: [PATCH] remove broken test I accidentally commited before --- crates/carddav/tests/integration_test.rs | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 crates/carddav/tests/integration_test.rs diff --git a/crates/carddav/tests/integration_test.rs b/crates/carddav/tests/integration_test.rs deleted file mode 100644 index 42cf6a9..0000000 --- a/crates/carddav/tests/integration_test.rs +++ /dev/null @@ -1,11 +0,0 @@ -use actix_web::{web, App}; -use rustical_carddav::configure_dav; - -#[actix_web::test] -async fn test_asd() { - let app = App::new().service(web::scope("/carddav").configure( - |config| configure_dav(config, auth_provider, store) - )); - let app = actix_web::test::init_service() - assert!(false); -}