We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f6fb7b commit 58559dcCopy full SHA for 58559dc
test/patch/apply.js
@@ -374,6 +374,27 @@ describe('patch/apply', function() {
374
+ 'line5\n');
375
});
376
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
392
+ + 'line2\n'
393
394
395
+ + 'line5\n');
396
+ });
397
398
it('should allow custom line comparison', function() {
399
expect(applyPatch(
400
'line2\n'
0 commit comments