Skip to content

Commit 58559dc

Browse files
committed
Test for hunk offsets
1 parent 7f6fb7b commit 58559dc

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

test/patch/apply.js

+21
Original file line numberDiff line numberDiff line change
@@ -374,6 +374,27 @@ describe('patch/apply', function() {
374374
+ 'line5\n');
375375
});
376376

377+
it('should succeed when hunk has an offset', function() {
378+
expect(applyPatch(
379+
'line1\n'
380+
+ 'line3\n'
381+
+ 'line4\n'
382+
+ 'line5\n',
383+
384+
'--- test\theader1\n'
385+
+ '+++ test\theader2\n'
386+
+ '@@ -3,2 +3,3 @@\n'
387+
+ ' line1\n'
388+
+ '+line2\n'
389+
+ ' line3\n'))
390+
.to.equal(
391+
'line1\n'
392+
+ 'line2\n'
393+
+ 'line3\n'
394+
+ 'line4\n'
395+
+ 'line5\n');
396+
});
397+
377398
it('should allow custom line comparison', function() {
378399
expect(applyPatch(
379400
'line2\n'

0 commit comments

Comments
 (0)