mirror of
https://github.com/lennart-k/rustical.git
synced 2025-12-14 07:02:24 +00:00
Refactoring
This commit is contained in:
11
crates/carddav/tests/integration_test.rs
Normal file
11
crates/carddav/tests/integration_test.rs
Normal file
@@ -0,0 +1,11 @@
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user