remove garbage "test"

This commit is contained in:
Lennart
2025-01-15 21:01:27 +01:00
parent bfda4b99ec
commit 3d218b0d8d

View File

@@ -11,7 +11,7 @@ const EVENT: &str = include_str!("examples/event.ics");
#[case::sqlite(async {
let (send, _recv) = tokio::sync::mpsc::channel(100);
SqliteCalendarStore::new(create_test_db().await.unwrap(), send)
})]
})]
async fn cal_store<CS: CalendarStore>(
#[future(awt)]
#[case]
@@ -19,12 +19,6 @@ async fn cal_store<CS: CalendarStore>(
) {
}
#[apply(cal_store)]
#[tokio::test]
async fn test_init<CS: CalendarStore>(_store: CS) {
// store.get_events("asd").await.unwrap();
}
#[apply(cal_store)]
#[tokio::test]
async fn test_create_event<CS: CalendarStore>(store: CS) {