pyramid_cubicweb/tests/test_bw_request.py
changeset 11514 82e86cd8e217
parent 11508 ef8b9021b47b
child 11593 73bf8377a3d5
--- a/pyramid_cubicweb/tests/test_bw_request.py	Mon Sep 22 12:15:31 2014 +0200
+++ b/pyramid_cubicweb/tests/test_bw_request.py	Wed Oct 22 16:15:54 2014 +0200
@@ -2,28 +2,11 @@
 from StringIO import StringIO
 
 import webtest
+
 import pyramid.request
 
-from cubicweb.devtools.webtest import CubicWebTestTC
-
-from pyramid_cubicweb import make_cubicweb_application
 from pyramid_cubicweb.core import CubicWebPyramidRequest
-
-
-class PyramidCWTest(CubicWebTestTC):
-    @classmethod
-    def init_config(cls, config):
-        super(PyramidCWTest, cls).init_config(config)
-        config.global_set_option('https-url', 'https://localhost.local/')
-        config['pyramid-auth-secret'] = 'authsecret'
-        config['pyramid-session-secret'] = 'sessionsecret'
-
-    def setUp(self):
-        # Skip CubicWebTestTC setUp
-        super(CubicWebTestTC, self).setUp()
-        config = make_cubicweb_application(self.config)
-        self.pyr_registry = config.registry
-        self.webapp = webtest.TestApp(config.make_wsgi_app())
+from pyramid_cubicweb.tests import PyramidCWTest
 
 
 class WSGIAppTest(PyramidCWTest):