Skip to content

Commit

Permalink
feat(doctest_eunit): return ok when no tests
Browse files Browse the repository at this point in the history
  • Loading branch information
williamthome committed Jun 4, 2024
1 parent b3037a2 commit 6c71ef0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/doctest_eunit.erl
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
test(Tests) ->
test(Tests, rebar3_config).

test({_Desc, []}, _Opts) ->
ok;
test(Tests, rebar3_config) ->
eunit:test(Tests, rebar3_config_opts());
test(Tests, Options) when is_list(Options) ->
Expand Down

0 comments on commit 6c71ef0

Please sign in to comment.