Skip to content

Commit

Permalink
Update test/{{ repo-name }}_SUITE.erl
Browse files Browse the repository at this point in the history
Co-authored-by: Brujo Benavides <elbrujohalcon@gmail.com>
  • Loading branch information
vkatsuba and elbrujohalcon committed Nov 1, 2021
1 parent 7ffc286 commit 92d9c9d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 17 deletions.
13 changes: 0 additions & 13 deletions CHANGELOG.md

This file was deleted.

10 changes: 6 additions & 4 deletions test/{{ repo-name }}_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,21 @@
-export([all/0, groups/0, init_per_testcase/2, end_per_testcase/2]).
-export([success/1]).

-spec all() -> list().
-spec all() -> [ct_suite:ct_test_def(), ...].
all() ->
[success].

-spec groups() -> list().
-spec groups() -> [ct_suite:ct_group_def(), ...].
groups() ->
[].

-spec init_per_testcase(term(), list()) -> list().
-spec init_per_testcase(ct_suite:ct_testname(), ct_suite:ct_config()) ->
ct_suite:ct_config() | {fail, term()} | {skip, term()}.
init_per_testcase(_Name, Config) ->
Config.

-spec end_per_testcase(term(), list()) -> ok.
-spec end_per_testcase(ct_suite:ct_testname(), ct_suite:ct_config()) ->
term() | {fail, term()} | {save_config, ct_suite:ct_config()}.
end_per_testcase(_Name, _Config) ->
ok.

Expand Down

0 comments on commit 92d9c9d

Please sign in to comment.