Пример #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)
Пример #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)
Пример #3
0
 def test_cleaned(self):
     storage.open(self.file, "w")
     clean_old_signed(-60)
     assert not storage.exists(self.file)
Пример #4
0
 def test_not_cleaned(self):
     storage.open(self.file, 'w')
     clean_old_signed()
     assert storage.exists(self.file)
Пример #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)
Пример #6
0
 def test_cleaned(self):
     storage.open(self.file, 'w')
     clean_old_signed(-60)
     assert not storage.exists(self.file)
Пример #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)