1
0
mirror of https://github.com/httpie/cli.git synced 2026-04-26 20:02:11 +02:00

Fixed tests.

This commit is contained in:
Jakub Roztocil
2014-06-03 19:44:22 +02:00
parent b44bc0928f
commit 8e170b059c
3 changed files with 11 additions and 6 deletions
+4 -2
View File
@@ -132,11 +132,13 @@ class TestSession(SessionTestBase):
env=self.env())
assert HTTP_OK in r1
r2 = http('--session=test', 'GET', httpbin('/get'), env=self.env())
r2 = http('--session=test', '--verbose', 'GET',
httpbin('/get'), env=self.env())
assert HTTP_OK in r2
assert (r2.json['headers']['Authorization']
== HTTPBasicAuth.make_header(u'test', UNICODE))
assert r2.json['headers']['Test'] == UNICODE
# httpbin doesn't interpret utf8 headers
assert UNICODE in r2
def test_session_default_header_value_overwritten(self):
# https://github.com/jakubroztocil/httpie/issues/180
+2 -1
View File
@@ -10,11 +10,12 @@ from fixtures import UNICODE
class TestUnicode:
def test_unicode_headers(self):
# httpbin doesn't interpret utf8 headers
r = http(httpbin('/headers'), u'Test:%s' % UNICODE)
assert HTTP_OK in r
assert r.json['headers']['Test'] == UNICODE
def test_unicode_headers_verbose(self):
# httpbin doesn't interpret utf8 headers
r = http('--verbose', httpbin('/headers'), u'Test:%s' % UNICODE)
assert HTTP_OK in r
assert UNICODE in r