Skip to content

Commit

Permalink
Unskip these Event tests now because apparently they work!
Browse files Browse the repository at this point in the history
  • Loading branch information
ryangribble committed Jan 15, 2017
1 parent ae8b6e3 commit 2f0ca4a
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Octokit.Tests.Integration/Clients/EventsClientTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ public async Task ReturnsDistinctEventsBasedOnStartPageWithRepositoryId()

public class TheGetAllIssuesForRepositoryMethod
{
[IntegrationTest(Skip = "Fails because of SimpleJsonSerializer, see https://github.com/octokit/octokit.net/issues/1374 for details.")]
[IntegrationTest]
public async Task CanListIssues()
{
var github = Helper.GetAuthenticatedClient();
Expand All @@ -167,7 +167,7 @@ public async Task CanListIssues()
Assert.NotEmpty(issues);
}

[IntegrationTest(Skip = "Fails because of SimpleJsonSerializer, see https://github.com/octokit/octokit.net/issues/1374 for details.")]
[IntegrationTest]
public async Task CanListIssuesWithRepositoryId()
{
var github = Helper.GetAuthenticatedClient();
Expand All @@ -176,7 +176,7 @@ public async Task CanListIssuesWithRepositoryId()
Assert.NotEmpty(issues);
}

[IntegrationTest(Skip = "Fails because of SimpleJsonSerializer, see https://github.com/octokit/octokit.net/issues/1374 for details.")]
[IntegrationTest]
public async Task ReturnsCorrectCountOfEventsWithoutStart()
{
var github = Helper.GetAuthenticatedClient();
Expand All @@ -192,7 +192,7 @@ public async Task ReturnsCorrectCountOfEventsWithoutStart()
Assert.Equal(3, eventInfos.Count);
}

[IntegrationTest(Skip = "Fails because of SimpleJsonSerializer, see https://github.com/octokit/octokit.net/issues/1374 for details.")]
[IntegrationTest]
public async Task ReturnsCorrectCountOfEventsWithoutStartWitRepositoryId()
{
var github = Helper.GetAuthenticatedClient();
Expand All @@ -208,7 +208,7 @@ public async Task ReturnsCorrectCountOfEventsWithoutStartWitRepositoryId()
Assert.Equal(3, eventInfos.Count);
}

[IntegrationTest(Skip = "Fails because of SimpleJsonSerializer, see https://github.com/octokit/octokit.net/issues/1374 for details.")]
[IntegrationTest]
public async Task ReturnsCorrectCountOfEventsWithStart()
{
var github = Helper.GetAuthenticatedClient();
Expand All @@ -225,7 +225,7 @@ public async Task ReturnsCorrectCountOfEventsWithStart()
Assert.Equal(2, eventInfos.Count);
}

[IntegrationTest(Skip = "Fails because of SimpleJsonSerializer, see https://github.com/octokit/octokit.net/issues/1374 for details.")]
[IntegrationTest]
public async Task ReturnsCorrectCountOfEventsWithStartWithRepositoryId()
{
var github = Helper.GetAuthenticatedClient();
Expand All @@ -242,7 +242,7 @@ public async Task ReturnsCorrectCountOfEventsWithStartWithRepositoryId()
Assert.Equal(2, eventInfos.Count);
}

[IntegrationTest(Skip = "Fails because of SimpleJsonSerializer, see https://github.com/octokit/octokit.net/issues/1374 for details.")]
[IntegrationTest]
public async Task ReturnsDistinctEventsBasedOnStartPage()
{
var github = Helper.GetAuthenticatedClient();
Expand All @@ -267,7 +267,7 @@ public async Task ReturnsDistinctEventsBasedOnStartPage()
Assert.NotEqual(firstPage[0].Id, secondPage[0].Id);
}

[IntegrationTest(Skip = "Fails because of SimpleJsonSerializer, see https://github.com/octokit/octokit.net/issues/1374 for details.")]
[IntegrationTest]
public async Task ReturnsDistinctEventsBasedOnStartPageWithRepositoryId()
{
var github = Helper.GetAuthenticatedClient();
Expand Down

0 comments on commit 2f0ca4a

Please sign in to comment.