eunit
eunit copied to clipboard
The EUnit lightweight unit testing framework for Erlang - this is the canonical development repository.
Idea: it should be possible to mark a test as "known failure" and report these separately, to handle test cases for known bugs not yet fixed (so you don't have...
Currently the only description of timeouts is the {timeout, S, T} tuple, but it does not mention the default timeout. Timeout behaviour should have its own subsection in the documentation.
I am getting a compilation error from the referencing of set:set() [line 64] and dict:dict() [line 66] in eunit_serial.erl when compiling against R16B on my mac running mavericks. I have...
Reported by Joern Barthel. EUnit should not timeout during debugging sessions. Environment: R11B-5 win32 If you compile (with debug_info) an erlang module such as the attached example and step debug...
Do you plan to make a coloring of eunit output?
Binaries can now be used as an alternative to strings in eunit: {Label, ...}. This is not yet documented (and not well tested).
It may be useful, especially for writing tests which are to be run by someone else to test for conformance, to have tests which never fail, but may produce a...
Provide a way to mark up subsets with a level, somehow. By default, should only first-level tests be executed, or all tests? Numeric parameter, or only by nesting? Absolute or...
The cmd code should run a shell, like os:cmd(). In particular, this needs to work better on Windows.
EUnit is already using regexps to enumerate functions (as funs) based on regexps, so it should be easy to make this a utility function for anyone to use. It is...