Created
February 13, 2011 22:59
-
-
Save agileguy/825258 to your computer and use it in GitHub Desktop.
failing spec
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
| using System; | |
| namespace mtSpec | |
| { | |
| public class FailingSpec | |
| { | |
| Given _context =()=> { }; | |
| When _something_bad_happens =()=> { }; | |
| Then _kaboom =()=> { 1.ShouldBe(2); }; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment