summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-08-23 04:07:24 -0400
committerChris McDonough <chrism@plope.com>2011-08-23 04:07:24 -0400
commit9fa4d046debe891ccdef7e96d102a34c0b209594 (patch)
treee656ad61e42ab7cfa193a819c4235157b48bf67c
parent885e66892a9f04f35689b135a1ee5879d4a7aa4f (diff)
downloadpyramid-9fa4d046debe891ccdef7e96d102a34c0b209594.tar.gz
pyramid-9fa4d046debe891ccdef7e96d102a34c0b209594.tar.bz2
pyramid-9fa4d046debe891ccdef7e96d102a34c0b209594.zip
remove temporary testing code
-rw-r--r--pyramid/tests/test_integration.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/pyramid/tests/test_integration.py b/pyramid/tests/test_integration.py
index d9e5c591f..1ebf83062 100644
--- a/pyramid/tests/test_integration.py
+++ b/pyramid/tests/test_integration.py
@@ -192,17 +192,6 @@ class TestCCBug(IntegrationBase):
# "unordered" as reported in IRC by author of
# http://labs.creativecommons.org/2010/01/13/cc-engine-and-web-non-frameworks/
package = 'pyramid.tests.ccbugapp'
-
- def setUp(self):
- from pyramid.config import Configurator
- config = Configurator(root_factory=self.root_factory,
- package=self.package)
- config.include(self.package)
- app = config.make_wsgi_app()
- from webtest import TestApp
- self.testapp = TestApp(app)
- self.config = config
-
def test_rdf(self):
res = self.testapp.get('/licenses/1/v1/rdf', status=200)
self.assertEqual(res.body, 'rdf')