Hate to pull up an old topic, but the history on this one matched so well.
I'm a new user of 1.32b and my mspec tests are showing up in the runner; however, they are
always passing.
Code example:
Code:
[Subject("a failure")]
public class a_when_doing_something_wrong
{
It should_fail = () => "moo".ShouldEqual(2.ToString());
}
The test, however, passes in the runner. It properly fails when executing it from mspec:
Quote:Machine.Specifications.SpecificationException: Should equal "2" but is "moo"
I've tried this at various nesting levels, with and without a because/context, and still nothing. I also do not appear to have any code coverage; however, the .pdb files are available.
This forum thread leads me that this is fixed, but is there a configuration setting I'm missing?
Thanks!
-dl