summaryrefslogtreecommitdiff
path: root/repoze/bfg/tests/test_integration.py
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-11-27 08:28:45 +0000
committerChris McDonough <chrism@agendaless.com>2009-11-27 08:28:45 +0000
commit45d08c56ea330583a472b4d2808262a634fa99f1 (patch)
treedab7e4abe9439cc05886bf2dac688995b3ead1b9 /repoze/bfg/tests/test_integration.py
parent82c9a232036b696d38b64c95787f0812d777e112 (diff)
downloadpyramid-45d08c56ea330583a472b4d2808262a634fa99f1.tar.gz
pyramid-45d08c56ea330583a472b4d2808262a634fa99f1.tar.bz2
pyramid-45d08c56ea330583a472b4d2808262a634fa99f1.zip
Coverage.
Remove set_security_policies configurator API method.
Diffstat (limited to 'repoze/bfg/tests/test_integration.py')
-rw-r--r--repoze/bfg/tests/test_integration.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/repoze/bfg/tests/test_integration.py b/repoze/bfg/tests/test_integration.py
index 2e3abe259..9d4a9838d 100644
--- a/repoze/bfg/tests/test_integration.py
+++ b/repoze/bfg/tests/test_integration.py
@@ -89,14 +89,3 @@ class DummyRequest:
def get_response(self, application):
return application(None, None)
-class DummyZCMLContext:
- def __init__(self):
- self.actions = []
- self.info = None
-
- def action(self, discriminator=None, callable=None, args=None):
- self.actions.append(
- {'discriminator':discriminator,
- 'callable':callable,
- 'args':args}
- )