cubicweb/pyramid/test/test_bw_request.py
changeset 11913 4516c3956d46
parent 11812 4e0829ade86f
child 12088 477a59a45786
--- a/cubicweb/pyramid/test/test_bw_request.py	Fri Jan 20 16:53:28 2017 +0100
+++ b/cubicweb/pyramid/test/test_bw_request.py	Mon Jan 23 11:02:21 2017 +0100
@@ -33,24 +33,6 @@
 
         self.assertEqual(b'some content', req.content.read())
 
-    def test_http_scheme(self):
-        req = CubicWebPyramidRequest(
-            self.make_request('/', {
-                'wsgi.url_scheme': 'http'}))
-
-        self.assertFalse(req.https)
-
-    def test_https_scheme(self):
-        req = CubicWebPyramidRequest(
-            self.make_request('/', {
-                'wsgi.url_scheme': 'https'}))
-
-        self.assertTrue(req.https)
-
-    def test_https_prefix(self):
-        r = self.webapp.get('/https/')
-        self.assertIn('https://', r.text)
-
     def test_big_content(self):
         content = b'x' * 100001