diff options
| author | Michael Merickel <michael@merickel.org> | 2015-10-21 02:06:02 -0500 |
|---|---|---|
| committer | Michael Merickel <michael@merickel.org> | 2015-10-21 02:06:02 -0500 |
| commit | a37bc80e8b27fa0f29a125a26475d7ae52ef9851 (patch) | |
| tree | 692de12ed02d710a308df184671712e1ff7fb4a3 | |
| parent | a9e1ba4cf0a89583ebe6511fecb501dbb275cc0d (diff) | |
| download | pyramid-a37bc80e8b27fa0f29a125a26475d7ae52ef9851.tar.gz pyramid-a37bc80e8b27fa0f29a125a26475d7ae52ef9851.tar.bz2 pyramid-a37bc80e8b27fa0f29a125a26475d7ae52ef9851.zip | |
fix coverage
| -rw-r--r-- | pyramid/tests/test_scripts/dummy.py | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/pyramid/tests/test_scripts/dummy.py b/pyramid/tests/test_scripts/dummy.py index 49e7d822f..a872e197c 100644 --- a/pyramid/tests/test_scripts/dummy.py +++ b/pyramid/tests/test_scripts/dummy.py @@ -33,25 +33,6 @@ class DummyInteractor: self.banner = banner self.local = local -class DummyBPythonShell: - def __call__(self, locals_, banner): - self.locals_ = locals_ - self.banner = banner - self.called = True - -class DummyIPShell(object): - IP = Dummy() - IP.BANNER = 'foo' - - def __call__(self): - self.called = True - -class DummyIPShellFactory(object): - def __call__(self, **kw): - self.kw = kw - self.shell = DummyIPShell() - return self.shell - class DummyApp: def __init__(self): self.registry = dummy_registry |
