mirror of
https://github.com/httpie/cli.git
synced 2024-11-08 00:44:45 +01:00
3cb124bba7
XX
25 lines
803 B
Python
25 lines
803 B
Python
import os
|
|
import tempfile
|
|
from unittest import TestCase
|
|
|
|
import pytest
|
|
|
|
from tests import TestEnvironment, http, httpbin, Environment
|
|
from httpie.compat import is_windows
|
|
|
|
|
|
class WindowsOnlyTests(TestCase):
|
|
@pytest.mark.skipif(not is_windows, reason='windows-only')
|
|
def test_windows_colorized_output(self):
|
|
# Spits out the colorized output.
|
|
http(httpbin('/get'), env=Environment())
|
|
|
|
|
|
class FakeWindowsTest(TestCase):
|
|
def test_output_file_pretty_not_allowed_on_windows(self):
|
|
env = TestEnvironment(is_windows=True)
|
|
r = http('--output',
|
|
os.path.join(tempfile.gettempdir(), '__httpie_test_output__'),
|
|
'--pretty=all', 'GET', httpbin('/get'), env=env)
|
|
assert 'Only terminal output can be colorized on Windows' in r.stderr
|