Current section
Files
Jump to
Current section
Files
src/testbldr@pieces.erl
-module(testbldr@pieces).
-compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function]).
-export_type([test/0, test_outcome/0]).
-type test() :: {test, binary(), fun(() -> test_outcome())}.
-type test_outcome() :: pass | silent | {fail, binary()}.