Created
January 18, 2013 10:37
-
-
Save marcusoftnet/4563752 to your computer and use it in GitHub Desktop.
SimpleGetNancyTest
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [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