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()
def test_negative(self): pc = PkgConfig('libsomething_that_does_not_exist_in_the_world') with self.assertRaises(ConanException): pc.libs()