diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2009-10-21 17:04:24 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2009-10-21 17:04:24 +0200 |
commit | a4fb3091a75005b047fbea72f812c53d27b15412 (patch) | |
tree | 1e844348b300cd85e7a626fb9140cbb117c6caf7 | |
parent | 5e52a00c81d032b47f1bc352369be3ff8eb87b27 (diff) | |
download | gitpython-a4fb3091a75005b047fbea72f812c53d27b15412.tar.gz |
diff: added test to be sure index-vs-working copy diffs are solved properly
-rw-r--r-- | test/git/test_diff.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/git/test_diff.py b/test/git/test_diff.py index deae7cfc..501d937d 100644 --- a/test/git/test_diff.py +++ b/test/git/test_diff.py @@ -74,3 +74,6 @@ class TestDiff(TestCase): assert value, "Did not find diff for %s" % key # END for each iteration type + def test_diff_index_working_tree(self): + self.fail("""Find a good way to diff an index against the working tree +which is not possible with the current interface""") |