aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_console_contentview.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_console_contentview.py')
-rw-r--r--test/test_console_contentview.py18
1 files changed, 12 insertions, 6 deletions
diff --git a/test/test_console_contentview.py b/test/test_console_contentview.py
index abc762fa..44378cf7 100644
--- a/test/test_console_contentview.py
+++ b/test/test_console_contentview.py
@@ -190,7 +190,8 @@ Larry
[["content-type", "application/json"]],
"[1, 2, 3]",
1000,
- lambda x, l: None
+ lambda x, l: None,
+ False
)
assert "Raw" in r[0]
@@ -199,7 +200,8 @@ Larry
[["content-type", "application/json"]],
"[1, 2, 3]",
1000,
- lambda x, l: None
+ lambda x, l: None,
+ False
)
assert r[0] == "JSON"
@@ -208,7 +210,8 @@ Larry
[["content-type", "application/json"]],
"[1, 2",
1000,
- lambda x, l: None
+ lambda x, l: None,
+ False
)
assert "Raw" in r[0]
@@ -217,7 +220,8 @@ Larry
[],
"[1, 2",
1000,
- lambda x, l: None
+ lambda x, l: None,
+ False
)
assert "Raw" in r[0]
@@ -230,7 +234,8 @@ Larry
],
encoding.encode('gzip', "[1, 2, 3]"),
1000,
- lambda x, l: None
+ lambda x, l: None,
+ False
)
assert "decoded gzip" in r[0]
assert "JSON" in r[0]
@@ -243,7 +248,8 @@ Larry
],
encoding.encode('gzip', "[1, 2, 3]"),
1000,
- lambda x, l: None
+ lambda x, l: None,
+ False
)
assert "decoded gzip" in r[0]
assert "Raw" in r[0]