Skip to content

Instantly share code, notes, and snippets.

@marcusoftnet
Created January 18, 2013 10:37
Show Gist options
  • Select an option

  • Save marcusoftnet/4563752 to your computer and use it in GitHub Desktop.

Select an option

Save marcusoftnet/4563752 to your computer and use it in GitHub Desktop.
SimpleGetNancyTest
[Fact]
public void simplest_get_test()
{
// Arrange
var browser = new Browser(with => with.Module(new SimpleModule()));
// Act
var response = browser.Get("/");
// Assert
Assert.Equal(HttpStatusCode.OK, response.StatusCode);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment