Skip to content

Instantly share code, notes, and snippets.

@agileguy
Created February 13, 2011 22:59
Show Gist options
  • Select an option

  • Save agileguy/825258 to your computer and use it in GitHub Desktop.

Select an option

Save agileguy/825258 to your computer and use it in GitHub Desktop.
failing spec
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