Skip to content

Commit

Permalink
Merge pull request #1083 from hahmed/seach-issues-api-failing-integra…
Browse files Browse the repository at this point in the history
…tion-test

Added failing search issues api integration test
  • Loading branch information
shiftkey committed Feb 2, 2016
2 parents d4614e4 + 4946246 commit b70dca4
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Octokit.Tests.Integration/Clients/SearchClientTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,18 @@ public async Task SearchForOpenIssues()
Assert.NotEmpty(issues.Items);
}

[Fact(Skip = "see https://github.com/octokit/octokit.net/issues/1082 for investigating this failing test")]
public async Task SearchForAllIssues()
{
var request = new SearchIssuesRequest("phone");
request.Repos.Add("caliburn-micro", "caliburn.micro");
request.State = ItemState.All;

var issues = await _gitHubClient.Search.SearchIssues(request);

Assert.NotEmpty(issues.Items);
}

[Fact]
public async Task SearchForAllIssuesWithouTaskUsingTerm()
{
Expand Down

0 comments on commit b70dca4

Please sign in to comment.