コード例 #1
0
ファイル: http_test.py プロジェクト: bryson/salt
 def test_query(self):
     """
     Test for Query a resource, and decode the return data
     """
     with patch.object(salt.utils.http, "query", return_value="A"):
         self.assertEqual(http.query("url"), "A")
コード例 #2
0
 def test_query(self):
     '''
     Test for Query a resource, and decode the return data
     '''
     with patch.object(salt.utils.http, 'query', return_value='A'):
         self.assertEqual(http.query('url'), 'A')
コード例 #3
0
ファイル: test_http.py プロジェクト: arizvisa/saltstack-salt
 def test_query(self):
     """
     Test for Query a resource, and decode the return data
     """
     with patch.object(salt.utils.http, "query", return_value="A"):
         self.assertEqual(http.query("url"), "A")