In MSpec, when you leave a test unimplemented, they should be ignored. NCrunch treats them as failing.
For instance:
Code:
[Subject("story")]
public class when_scenario : ScenarioObjects {
Establish context = () => {};
Because action = () => {
sut.SomeAction()
};
It should_be_ignored;
It should_pass = () => {};
It should_fail =()=> { throw new Exception(); }
}
The test "should_be_ignored" should be treated as ignored. Both the command-line MSpec runner and the Resharper test runner does this correctly.
I am running 1.40b on Visual Studio 2010 with C#, .net 4, MSpec 0.4.23.0, and Resharper 6.1.
Thanks.
Jeff