In this example
with description("foo"):
with context("bar"):
it("loads baz_driver correctly")
Mamba will replace the underscore in baz_driver with spaces and the output when running in documentation mode becomes:
foo
bar
✓ it loads baz driver correctly
Expected output:
foo
bar
✓ it loads baz_driver correctly
Using Mamba 0.9.3.
Is this transformation deliberate? And if so, why?
Note: context and description blocks do not apply any substitution.
In this example
Mamba will replace the underscore in
baz_driverwith spaces and the output when running in documentation mode becomes:Expected output:
Using Mamba 0.9.3.
Is this transformation deliberate? And if so, why?
Note:
contextanddescriptionblocks do not apply any substitution.