temp skip Wayback tests

ref #590
This commit is contained in:
Collin M. Barrett 2018-10-17 12:54:53 -05:00
parent 30e100fb26
commit 3070f504ac

View file

@ -7,7 +7,7 @@ namespace FilterLists.Services.Tests
{
public class WaybackServiceTests
{
[Fact]
[Fact(Skip = "https://github.com/collinbarrett/FilterLists/issues/590")]
public async void GetMostRecentSnapshotMetaAsync_UrlInWaybackMachine_ReturnsAccessibleRawUrl()
{
const string url = "https://github.com/collinbarrett/FilterLists";
@ -19,7 +19,7 @@ public async void GetMostRecentSnapshotMetaAsync_UrlInWaybackMachine_ReturnsAcce
}
}
[Fact]
[Fact(Skip = "https://github.com/collinbarrett/FilterLists/issues/590")]
public async void GetMostRecentSnapshotMetaAsync_UrlInWaybackMachine_ReturnsRecentTimestampUtc()
{
const string url = "https://github.com/collinbarrett/FilterLists";
@ -28,7 +28,7 @@ public async void GetMostRecentSnapshotMetaAsync_UrlInWaybackMachine_ReturnsRece
meta.TimestampUtc < DateTime.UtcNow);
}
[Fact]
[Fact(Skip = "https://github.com/collinbarrett/FilterLists/issues/590")]
public async void GetMostRecentSnapshotMetaAsync_UrlNotInWaybackMachine_ReturnsNull()
{
const string url = "https://raw.githubusercontent.com/collinbarrett/FilterLists/master/doesnotexist";