8000 Add regression test for libgit2 #4102 by rcjsuen · Pull Request #1220 · nodegit/nodegit · GitHub
[go: up one dir, main page]

Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions test/tests/revwalk.js
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,18 @@ describe("Revwalk", function() {
});
});

it("regression test for libgit2 #4102", function() {
this.walker.sorting(NodeGit.Revwalk.SORT.TOPOLOGICAL);
this.walker.pushRange("32789a7..c82fb07");
return this.walker.next()
.then(function(commit) {
return Promise.reject(new Error("shouldn't be able to iterate"));
})
.catch(function(err) {
assert.equal(err.errno, NodeGit.Error.CODE.ITEROVER);
});
});

it("does not leak", function() {
var test = this;

Expand Down
0