コード例 #1
0
 def test_system_config(self):
     try:
         self.assertNotEqual(None, Config.get_system_config())
     except IOError:
         # There is no system config
         pass
コード例 #2
0
ファイル: test_config.py プロジェクト: GuoqiangYANG/pygit2
 def test_system_config(self):
     try:
         self.assertNotEqual(None, Config.get_system_config())
     except IOError:
         # There is no system config
         pass
コード例 #3
0
ファイル: test_config.py プロジェクト: robinst/pygit2
 def test_system_config(self):
     try:
         assert Config.get_system_config() is not None
     except IOError:
         # There is no system config
         pass
コード例 #4
0
ファイル: test_config.py プロジェクト: fourplusone/pygit2
 def test_system_config(self):
     try:
         assert Config.get_system_config() is not None
     except IOError:
         # There is no system config
         pass