當前位置: 首頁>>代碼示例>>Python>>正文


Python output.BINARY_SUPPRESSED_NOTICE類代碼示例

本文整理匯總了Python中httpie.output.BINARY_SUPPRESSED_NOTICE的典型用法代碼示例。如果您正苦於以下問題:Python BINARY_SUPPRESSED_NOTICE類的具體用法?Python BINARY_SUPPRESSED_NOTICE怎麽用?Python BINARY_SUPPRESSED_NOTICE使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了BINARY_SUPPRESSED_NOTICE類的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_encoded_stream

 def test_encoded_stream(self):
     """Test that --stream works with non-prettified
     redirected terminal output."""
     with open(BIN_FILE_PATH, 'rb') as f:
         env = TestEnvironment(stdin=f, stdin_isatty=False)
         r = http('--pretty=none', '--stream', '--verbose', 'GET',
                  httpbin('/get'), env=env)
     assert BINARY_SUPPRESSED_NOTICE.decode() in r
開發者ID:alfred82santa,項目名稱:httpie,代碼行數:8,代碼來源:test_stream.py

示例2: test_binary_suppresses_when_not_terminal_but_pretty

 def test_binary_suppresses_when_not_terminal_but_pretty(self):
     r = http(
         '--pretty=all',
         'GET',
         self.url,
         env=TestEnvironment(stdin_isatty=True,
                         stdout_isatty=False)
     )
     self.assertIn(BINARY_SUPPRESSED_NOTICE.decode(), r)
開發者ID:Elarnon,項目名稱:httpie,代碼行數:9,代碼來源:tests.py

示例3: test_pretty_redirected_stream

 def test_pretty_redirected_stream(self):
     """Test that --stream works with prettified redirected output."""
     with open(BIN_FILE_PATH, 'rb') as f:
         env = TestEnvironment(colors=256, stdin=f,
                               stdin_isatty=False,
                               stdout_isatty=False)
         r = http('--verbose', '--pretty=all', '--stream', 'GET',
                  httpbin('/get'), env=env)
     assert BINARY_SUPPRESSED_NOTICE.decode() in r
開發者ID:alfred82santa,項目名稱:httpie,代碼行數:9,代碼來源:test_stream.py

示例4: test_binary_suppresses_when_terminal

 def test_binary_suppresses_when_terminal(self):
     r = http(
         'GET',
         self.url
     )
     self.assertIn(BINARY_SUPPRESSED_NOTICE.decode(), r)
開發者ID:Elarnon,項目名稱:httpie,代碼行數:6,代碼來源:tests.py


注:本文中的httpie.output.BINARY_SUPPRESSED_NOTICE類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。