summaryrefslogtreecommitdiff
path: root/test/testlib
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2009-10-12 23:18:43 +0200
committerSebastian Thiel <byronimo@gmail.com>2009-10-12 23:18:43 +0200
commita58a60ac5f322eb4bfd38741469ff21b5a33d2d5 (patch)
tree0f47c2f2844c7e1d26925a7a9f4016eb8d961b0d /test/testlib
parentff3d142387e1f38b0ed390333ea99e2e23d96e35 (diff)
downloadgitpython-a58a60ac5f322eb4bfd38741469ff21b5a33d2d5.tar.gz
tree: now behaves like a list with string indexing functionality - using a dict as cache is a problem as the tree is ordered, added blobs, trees and traverse method
repo: remove blob function as blobs are created directly or iterated - primitve types should not clutter the repo interface
Diffstat (limited to 'test/testlib')
-rw-r--r--test/testlib/__init__.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/testlib/__init__.py b/test/testlib/__init__.py
index 2133eb8c..f364171b 100644
--- a/test/testlib/__init__.py
+++ b/test/testlib/__init__.py
@@ -8,6 +8,7 @@ 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)) ]