Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit9910a88

Browse files
committed
test: add test for diff with beginning whitespace
1 parentd35998f commit9910a88

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

‎test/test_diff.py

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -529,3 +529,23 @@ def test_diff_patch_with_external_engine(self, rw_dir):
529529
self.assertEqual(len(index_against_head),1)
530530
index_against_working_tree=repo.index.diff(None,create_patch=True)
531531
self.assertEqual(len(index_against_working_tree),1)
532+
533+
@with_rw_directory
534+
deftest_beginning_space(self,rw_dir):
535+
# Create a file beginning by a whitespace
536+
repo=Repo.init(rw_dir)
537+
file=osp.join(rw_dir," file.txt")
538+
withopen(file,"w")asf:
539+
f.write("hello world")
540+
repo.git.add(Git.polish_url(file))
541+
repo.index.commit("first commit")
542+
543+
# Diff the commit with an empty tree
544+
# and check the paths
545+
diff_index=repo.head.commit.diff(NULL_TREE)
546+
d=diff_index[0]
547+
a_path=d.a_path
548+
b_path=d.b_path
549+
self.assertEqual(a_path," file.txt")
550+
self.assertEqual(b_path," file.txt")
551+

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp