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 91e11e3 commit c978f21Copy full SHA for c978f21
ObjectiveGitTests/Libgit2FeaturesSpec.m
@@ -30,10 +30,17 @@
30
expect(@(git_features & GIT_FEATURE_HTTPS)).to(beTruthy());
31
});
32
33
- xit(@"should be built with SSH enabled", ^{
+ it(@"should be built with SSH enabled", ^{
34
expect(@(git_features & GIT_FEATURE_SSH)).to(beTruthy());
35
36
37
+ it(@"should have ssh memory credentials", ^{
38
+ NSError *error;
39
+ GTCredential *cred = [GTCredential credentialWithUserName:@"null" publicKeyString:@"pub" privateKeyString:@"priv" passphrase:@"pass" error:&error];
40
+
41
+ expect(cred).notTo(beNil());
42
+ expect(error).to(beNil());
43
+ });
44
45
46
QuickSpecEnd
0 commit comments