From e328ffddec722be3fba2c9b637378e31e623d58e Mon Sep 17 00:00:00 2001 From: Jonathan Chu Date: Wed, 16 Mar 2016 14:08:31 -0400 Subject: Add test and fixture for diff index from raw format This tests the edge case of doing a diff against a single whitespace filename and returns the proper change type. All other normal usage of this diff classmethod should remain unchanged. --- git/test/test_diff.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'git/test/test_diff.py') diff --git a/git/test/test_diff.py b/git/test/test_diff.py index 53bb65db..b0d98248 100644 --- a/git/test/test_diff.py +++ b/git/test/test_diff.py @@ -122,6 +122,12 @@ class TestDiff(TestBase): dr = res[3] assert dr.diff.endswith(b"+Binary files a/rps and b/rps differ\n") + def test_diff_index_raw_format(self): + output = StringProcessAdapter(fixture('diff_index_raw')) + res = Diff._index_from_raw_format(None, output.stdout) + assert res[0].deleted_file + assert res[0].b_path == '' + def test_diff_patch_format(self): # test all of the 'old' format diffs for completness - it should at least # be able to deal with it -- cgit v1.2.1