You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
v0.5.2
Bugfixes:
- skipped examples are now reported correctly in XMLReport
- returned actions #skip and #pass to SpecReporter (just aliases to the
new actions)
v0.5.1
New features:
- add verification to NAN and infnity values (float and decimal)
- add an action to SpecReporter report a non terminating verification
- time duration for each example
0.4.0
Organize SuiteRunner;
Store only the result of examples (not the string with context);
Unify skipped and ignore examples;
Extract ExampleResultListener to its own file.
v0.2.0
General improvements to error detection.
New features:
- Suite#ignore allows to define an example (replacing Suite#it) that
will not run. It is useful to disable examples without changing the
spec code.
- Unreacheable context/example detection. These will be marked as
errors.
- Duplicate examples detection. Only one will run, others will be
marked as errors.
- CDP generated contains version number.
Bugfixes:
- Fix counters (examples, failures, etc) when examples have more than
one 'not-success' result.
- Improve detection for end of specs: all results of a spec are
recorded and reported. This should terminate listener leaks.