Example #1
0
 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)
Example #2
0
 def test_cleaned(self):
     with storage.open(self.file, 'w') as f:
         f.write('.')
     clean_old_signed(-60)
     assert not storage.exists(self.file)
Example #3
0
 def test_cleaned(self):
     storage.open(self.file, "w")
     clean_old_signed(-60)
     assert not storage.exists(self.file)
Example #4
0
 def test_not_cleaned(self):
     storage.open(self.file, 'w')
     clean_old_signed()
     assert storage.exists(self.file)
Example #5
0
 def test_not_cleaned(self):
     with storage.open(self.file, 'w') as f:
         f.write('.')
     clean_old_signed()
     assert storage.exists(self.file)
Example #6
0
 def test_cleaned(self):
     storage.open(self.file, 'w')
     clean_old_signed(-60)
     assert not storage.exists(self.file)
Example #7
0
 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)