Some tests have been rewritten according to @shiftkey remarks.

This commit is contained in:
aedampir@gmail.com
2016-03-16 13:07:22 +07:00
parent e2cb829f26
commit 632dd6218b
@@ -39,24 +39,9 @@ namespace Octokit.Tests.Integration.Clients
var emails = await _emailClient.GetAll(options);
Assert.Equal(1, emails.Count);
Assert.NotEmpty(emails);
}
[IntegrationTest]
public async Task ReturnsCorrectCountOfEmailsWithStart()
{
var options = new ApiOptions
{
PageSize = 5,
PageCount = 1,
StartPage = 2
};
var emails = await _emailClient.GetAll(options);
Assert.Equal(0, emails.Count);
}
const string testEmailAddress = "hahaha-not-a-real-email@foo.com";
[IntegrationTest(Skip = "this isn't passing in CI - i hate past me right now")]