mirror of
https://github.com/lennart-k/rustical.git
synced 2025-12-13 21:42:34 +00:00
12 lines
310 B
Rust
12 lines
310 B
Rust
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);
|
|
}
|