Ejemplo n.º 1
0
 def test_does_not_exist_album(self):
     '''
     test_does_not_exist_album
     '''
     exists = sync.exists_local(self.root_dir, 'no_album1', 'photo1')
     self.assertFalse(exists)
Ejemplo n.º 2
0
 def test_exist(self):
     '''
     test_exist
     '''
     exists = sync.exists_local(self.root_dir, 'album1', 'photo1')
     self.assertTrue(exists)