We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 981feaf commit 343ba7eCopy full SHA for 343ba7e
tests/pair_test.py
@@ -38,14 +38,18 @@ def test_pairing_with_move():
38
testdir = 'testdata/renamedfile'
39
diff = util.find_diff('%s/left/dir' % testdir, '%s/right/dir' % testdir)
40
eq_([{'a': 'file.json',
41
+ 'a_path': 'testdata/renamedfile/left/dir/file.json',
42
'path': 'file.json',
43
'b': 'renamed.json',
44
+ 'b_path': 'testdata/renamedfile/right/dir/renamed.json',
45
'type': 'move',
46
'no_changes': True,
47
'idx': 0},
48
{'a': 'file.json',
49
50
51
'b': None,
52
+ 'b_path': None,
53
'type': 'delete',
54
'no_changes': False,
55
'idx': 1}], diff)
0 commit comments