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 8f47b33 commit 9bc13e2Copy full SHA for 9bc13e2
ObjectiveGitTests/GTRepositorySpec.m
@@ -51,6 +51,8 @@
51
GTRepository *badRepo = [GTRepository repositoryWithURL:[NSURL fileURLWithPath:@"fake/1235"] error:&error];
52
expect(badRepo).to.beNil();
53
expect(error).notTo.beNil();
54
+ expect(error.domain).to.equal(GTGitErrorDomain);
55
+ expect(error.code).to.equal(GIT_ENOTFOUND);
56
});
57
58
0 commit comments