summaryrefslogtreecommitdiff
path: root/TODO
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2009-10-21 17:00:40 +0200
committerSebastian Thiel <byronimo@gmail.com>2009-10-21 17:00:40 +0200
commit5e52a00c81d032b47f1bc352369be3ff8eb87b27 (patch)
treefd0d54729e7416d2ddf21da4bfdc0333a7d0daae /TODO
parent6fcbda4e363262a339d1cacbf7d2945ec3bd83f0 (diff)
downloadgitpython-5e52a00c81d032b47f1bc352369be3ff8eb87b27.tar.gz
repo.is_dirty: fixed incorrect check of a dirty working tree, previously it would compare HEAD against the working tree, not the index which was intended
Diffstat (limited to 'TODO')
-rw-r--r--TODO7
1 files changed, 7 insertions, 0 deletions
diff --git a/TODO b/TODO
index 0915806d..75a0fb09 100644
--- a/TODO
+++ b/TODO
@@ -59,5 +59,12 @@ Tree
testing whether it raises on invalid input ? ). See 6dc7799d44e1e5b9b77fd19b47309df69ec01a99
* Derive from Iterable, simple pipe it through to Commit objects and iterate using
commit.tree.
+
+Testing
+-------
+* Create a test-repository that can be written to and changed in addition to the normal
+ read-only testing scheme that operates on the own repository. Doing this could be a simple
+ as forking a shared repo in a tmp directory. In that moment, we probably want to
+ facility committing and checkouts as well.