Remove another test.

This commit is contained in:
Mike Place 2015-02-10 11:54:16 -07:00 committed by rallytime
parent 073d7175c5
commit c41998cc4f

View File

@ -111,21 +111,6 @@ class GitFSTest(integration.ModuleCase):
ret = gitfs.file_list(LOAD)
self.assertIn('testfile', ret)
#@skipIf(True, 'Skipping tests temporarily')
def test_find_file(self):
with patch.dict(gitfs.__opts__, {'cachedir': self.master_opts['cachedir'],
'gitfs_remotes': ['file://' + self.tmp_repo_dir],
'sock_dir': self.master_opts['sock_dir']}):
path = os.path.join(self.master_opts['cachedir'],
'gitfs/refs',
LOAD['saltenv'],
'testfile')
ret = gitfs.find_file('testfile')
expected_ret = {'path': path, 'rel': 'testfile'}
self.assertDictEqual(ret, expected_ret)
#@skipIf(True, 'Skipping tests temporarily')
def test_dir_list(self):
with patch.dict(gitfs.__opts__, {'cachedir': self.master_opts['cachedir'],