コード例 #1
0
ファイル: pkg_config_test.py プロジェクト: zhengweina/conan
 def test_negative(self):
     if platform.system() == "Windows":
         return
     pc = PkgConfig('libsomething_that_does_not_exist_in_the_world')
     with self.assertRaises(ConanException):
         pc.libs()
コード例 #2
0
 def test_negative(self):
     pc = PkgConfig('libsomething_that_does_not_exist_in_the_world')
     with self.assertRaises(ConanException):
         pc.libs()