def test_cleaned(self): with private_storage.open(self.file, 'w') as f: f.write('.') clean_old_signed(-60) assert not private_storage.exists(self.file)
def test_cleaned(self): with storage.open(self.file, 'w') as f: f.write('.') clean_old_signed(-60) assert not storage.exists(self.file)
def test_cleaned(self): storage.open(self.file, "w") clean_old_signed(-60) assert not storage.exists(self.file)
def test_not_cleaned(self): storage.open(self.file, 'w') clean_old_signed() assert storage.exists(self.file)
def test_not_cleaned(self): with storage.open(self.file, 'w') as f: f.write('.') clean_old_signed() assert storage.exists(self.file)
def test_cleaned(self): storage.open(self.file, 'w') clean_old_signed(-60) assert not storage.exists(self.file)
def test_not_cleaned(self): with private_storage.open(self.file, 'w') as f: f.write('.') clean_old_signed() assert private_storage.exists(self.file)