From 385084582eeff5f2f1a93f3b90c091dc1a4ad50e Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Thu, 21 May 2009 02:47:43 +0000 Subject: Remove cacheability voodoo. --- repoze/bfg/tests/test_integration.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'repoze/bfg/tests/test_integration.py') diff --git a/repoze/bfg/tests/test_integration.py b/repoze/bfg/tests/test_integration.py index fb07d76a5..8c088fce0 100644 --- a/repoze/bfg/tests/test_integration.py +++ b/repoze/bfg/tests/test_integration.py @@ -141,7 +141,7 @@ class TestGrokkedApp(unittest.TestCase): def tearDown(self): cleanUp() - def test_registry_actions_cannot_be_pickled_and_unpickled(self): + def test_it(self): import repoze.bfg.tests.grokkedapp as package from zope.configuration import config @@ -151,8 +151,7 @@ class TestGrokkedApp(unittest.TestCase): context.package = package xmlconfig.include(context, 'configure.zcml', package) actions = context.actions - import cPickle - self.assertRaises(cPickle.PicklingError, cPickle.dumps, actions, -1) + self.failUnless(actions) class DummyContext: pass -- cgit v1.2.3