This commit is contained in:
daladim 2021-03-28 19:42:18 +02:00
parent 9a23081cda
commit 45b4c1a056
2 changed files with 6 additions and 1 deletions

View file

@ -59,7 +59,6 @@ impl BaseCalendar for CachedCalendar {
#[async_trait]
impl CompleteCalendar for CachedCalendar {
async fn get_item_ids(&self) -> Result<HashSet<ItemId>, Box<dyn Error>> {
eprintln!("Overridden implem");
Ok(self.items.iter()
.map(|(id, _)| id.clone())
.collect()

6
tests/sync-reminder.rs Normal file
View file

@ -0,0 +1,6 @@
#[test]
#[ignore]
fn do_not_forget_to_run_tests_with_specific_features() {
// This is just a reminder that there are tests that can be run only when cargo feature "integration_tests" is enabled.
// See `sync.rs`
}