コード例 #1
0
ファイル: test_sync.py プロジェクト: shadowfax-chc/pycsync
 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)
コード例 #2
0
ファイル: test_sync.py プロジェクト: shadowfax-chc/pycsync
 def test_exist(self):
     '''
     test_exist
     '''
     exists = sync.exists_local(self.root_dir, 'album1', 'photo1')
     self.assertTrue(exists)