Currently we have fails(f) and errors(f). I wonder if it would make more sense to rename these to test_fails(f) and test_errors(f), similar to the @test_throws, @test_broken macros provided by Test.
Perhaps even better, it would simplify user code if we make these macros so users could call @test_fails f(...) and @test_errors f(...).
Currently we have
fails(f)anderrors(f). I wonder if it would make more sense to rename these totest_fails(f)andtest_errors(f), similar to the@test_throws,@test_brokenmacros provided by Test.Perhaps even better, it would simplify user code if we make these macros so users could call
@test_fails f(...)and@test_errors f(...).