diff options
| author | Chris McDonough <chrism@agendaless.com> | 2009-11-18 00:37:21 +0000 |
|---|---|---|
| committer | Chris McDonough <chrism@agendaless.com> | 2009-11-18 00:37:21 +0000 |
| commit | 57267a39be342ace47cccfcb481dcc407a48b0d7 (patch) | |
| tree | 2160f1a0d4f5614f410626b6a3a3b0c76a7547ac /repoze/bfg/tests/test_configuration.py | |
| parent | 541e450d8098988209af3ecfd3829b242999039c (diff) | |
| download | pyramid-57267a39be342ace47cccfcb481dcc407a48b0d7.tar.gz pyramid-57267a39be342ace47cccfcb481dcc407a48b0d7.tar.bz2 pyramid-57267a39be342ace47cccfcb481dcc407a48b0d7.zip | |
- The ``repoze.bfg.registry.make_registry`` callable has been removed.
- The ``repoze.bfg.view.map_view`` callable has been removed.
- The ``repoze.bfg.view.owrap_view`` callable has been removed.
- The ``repoze.bfg.view.predicate_wrap`` callable has been removed.
- The ``repoze.bfg.view.secure_view`` callable has been removed.
- The ``repoze.bfg.view.authdebug_view`` callable has been removed.
- The ``repoze.bfg.view.renderer_from_name`` callable has been removed.
- Coverage.
Diffstat (limited to 'repoze/bfg/tests/test_configuration.py')
| -rw-r--r-- | repoze/bfg/tests/test_configuration.py | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/repoze/bfg/tests/test_configuration.py b/repoze/bfg/tests/test_configuration.py index d7f707f87..5449e0933 100644 --- a/repoze/bfg/tests/test_configuration.py +++ b/repoze/bfg/tests/test_configuration.py @@ -2,20 +2,6 @@ import unittest from repoze.bfg.testing import cleanUp -class MakeRegistryTests(unittest.TestCase): - def setUp(self): - cleanUp() - - def tearDown(self): - cleanUp() - - def _makeOne(self): - from repoze.bfg.registry import Registry - from repoze.bfg.configuration import Configurator - reg = Registry() - config = Configurator(reg) - - class ConfiguratorTests(unittest.TestCase): def _makeOne(self, registry=None): from repoze.bfg.registry import Registry @@ -619,14 +605,6 @@ class DummyRootFactory: def __init__(self, root): self.root = root -class DummyLogger: - def __init__(self): - self.messages = [] - def info(self, msg): - self.messages.append(msg) - warn = info - debug = info - class DummyContext: pass |
