From a1a9fb7128c935848b17c0ce6586991098a17f07 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Wed, 27 May 2009 04:52:51 +0000 Subject: Merge authchanges branch to trunk. --- repoze/bfg/tests/test_integration.py | 7 +------ 1 file changed, 1 insertion(+), 6 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 fdb85b87e..3630a2778 100644 --- a/repoze/bfg/tests/test_integration.py +++ b/repoze/bfg/tests/test_integration.py @@ -120,7 +120,7 @@ class TestFixtureApp(unittest.TestCase): def tearDown(self): cleanUp() - def test_registry_actions_can_be_pickled_and_unpickled(self): + def test_execute_actions(self): import repoze.bfg.tests.fixtureapp as package from zope.configuration import config from zope.configuration import xmlconfig @@ -129,11 +129,6 @@ class TestFixtureApp(unittest.TestCase): context.package = package xmlconfig.include(context, 'configure.zcml', package) context.execute_actions(clear=False) - actions = context.actions - import cPickle - dumped = cPickle.dumps(actions, -1) - new = cPickle.loads(dumped) - self.assertEqual(len(actions), len(new)) class TestGrokkedApp(unittest.TestCase): def setUp(self): -- cgit v1.2.3