Exemplo n.º 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)
Exemplo n.º 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)
Exemplo n.º 3
0
 def test_cleaned(self):
     storage.open(self.file, "w")
     clean_old_signed(-60)
     assert not storage.exists(self.file)
Exemplo n.º 4
0
 def test_not_cleaned(self):
     storage.open(self.file, 'w')
     clean_old_signed()
     assert storage.exists(self.file)
Exemplo n.º 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)
Exemplo n.º 6
0
 def test_cleaned(self):
     storage.open(self.file, 'w')
     clean_old_signed(-60)
     assert not storage.exists(self.file)
Exemplo n.º 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)