Skip to content

Instantly share code, notes, and snippets.

View nschonni's full-sized avatar
🛏️
PR'ing from bed

Nick Schonning nschonni

🛏️
PR'ing from bed
View GitHub Profile
@charset "UTF-8";
[id|="wb-body-sec"] #wb-core .grid-12 .span-1 {
width: 50px;
}
[id|="wb-body-sec"] #wb-core .grid-12 .offset-1 {
margin-left: 80px;
}
[id|="wb-body-sec"] #wb-core .grid-12 .span-2 {
width: 120px;
}
@nschonni
nschonni / Basic Theories
Created August 3, 2012 02:04
Theory test for urls
public static IEnumerable<object[]> ValidHttpUrlsToTest
{
get
{
yield return new object[] { "HTTP, Closing no slash", "http://foo" };
yield return new object[] { "HTTP, Closing slash", "http://foo.com/" };
yield return new object[] { "HTTP, Closing", "http://foo.com/" };
yield return new object[] { "HTTP, no domain no slash", "http://foo" };
yield return new object[] { "HTTP, no domain no slash", "http://foo/" };
yield return new object[] { "HTTP, More than one parens", "http://foo.com/more_(than)_one_(parens)" };