aboutsummaryrefslogtreecommitdiff
path: root/test/testlib/__init__.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2009-10-22 15:04:29 +0200
committerSebastian Thiel <byronimo@gmail.com>2009-10-22 15:04:29 +0200
commitbb0ac304431e8aed686a8a817aaccd74b1ba4f24 (patch)
tree5f45591413de4fef265de05d9a193512508e0c1b /test/testlib/__init__.py
parent59e26435a8d2008073fc315bafe9f329d0ef689a (diff)
downloadGitPython-bb0ac304431e8aed686a8a817aaccd74b1ba4f24.tar.gz
GitPython-bb0ac304431e8aed686a8a817aaccd74b1ba4f24.zip
Added frame for new Repo handling and some neat decorators, including tests that test whether the testing framework does what it should
Diffstat (limited to 'test/testlib/__init__.py')
-rw-r--r--test/testlib/__init__.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/testlib/__init__.py b/test/testlib/__init__.py
index f364171b..2133eb8c 100644
--- a/test/testlib/__init__.py
+++ b/test/testlib/__init__.py
@@ -8,7 +8,6 @@ import inspect
from mock import *
from asserts import *
from helper import *
-from unittest import TestCase
__all__ = [ name for name, obj in locals().items()
if not (name.startswith('_') or inspect.ismodule(obj)) ]