remove broken test I accidentally commited before

This commit is contained in:
Lennart
2024-11-06 17:54:03 +01:00
parent eebed51aec
commit f9c9719415

View File

@@ -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);
}