Skip to content

Commit

Permalink
Adding reference to issue #27 for skipped tests
Browse files Browse the repository at this point in the history
  • Loading branch information
chadly committed Aug 24, 2014
1 parent d712b2b commit 2ec5fe5
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions Tests/YahooGeocoderTest.cs
Expand Up @@ -15,29 +15,30 @@ protected override IGeocoder CreateGeocoder()
}

//TODO: delete these when tests are ready to be unskipped
//see issue #27

[Fact(Skip = "oauth not working for yahoo")]
[Fact(Skip = "oauth not working for yahoo - see issue #27")]
public override void CanGeocodeAddress(string address) { }

[Fact(Skip = "oauth not working for yahoo")]
[Fact(Skip = "oauth not working for yahoo - see issue #27")]
public override void CanGeocodeNormalizedAddress() { }

[Fact(Skip = "oauth not working for yahoo")]
[Fact(Skip = "oauth not working for yahoo - see issue #27")]
public override void CanGeocodeAddressUnderDifferentCultures(string cultureName) { }

[Fact(Skip = "oauth not working for yahoo")]
[Fact(Skip = "oauth not working for yahoo - see issue #27")]
public override void CanReverseGeocodeAddressUnderDifferentCultures(string cultureName) { }

[Fact(Skip = "oauth not working for yahoo")]
[Fact(Skip = "oauth not working for yahoo - see issue #27")]
public override void ShouldNotBlowUpOnBadAddress() { }

[Fact(Skip = "oauth not working for yahoo")]
[Fact(Skip = "oauth not working for yahoo - see issue #27")]
public override void CanGeocodeWithSpecialCharacters(string address) { }

[Fact(Skip = "oauth not working for yahoo")]
[Fact(Skip = "oauth not working for yahoo - see issue #27")]
public override void CanReverseGeocode() { }

[Fact(Skip = "oauth not working for yahoo")]
[Fact(Skip = "oauth not working for yahoo - see issue #27")]
public override void CanGeocodeInvalidZipCodes(string address) { }
}
}
}

0 comments on commit 2ec5fe5

Please sign in to comment.