updated SearchUsers to match correct response shape

This commit is contained in:
Brendan Forster
2014-03-05 22:22:10 +11:00
parent 55d0e99775
commit 433e9249a9
12 changed files with 66 additions and 30 deletions
@@ -23,4 +23,13 @@ public class SearchClientTests
Assert.NotEmpty(repos.Items);
}
[Fact]
public async Task SearchForGitHub()
{
var request = new SearchUsersRequest("github");
var repos = await _gitHubClient.Search.SearchUsers(request);
Assert.NotEmpty(repos.Items);
}
}