Browse Source

Merge pull request #1516 from talentdeficit/fix_eunit_suite

eunit in 19.3 errors if `init_per_*` isn't paired with `end_per_*`
pull/1523/head
Fred Hebert 8 years ago
committed by GitHub
parent
commit
903bec6b57
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      test/rebar_eunit_SUITE.erl

+ 4
- 1
test/rebar_eunit_SUITE.erl View File

@ -1,7 +1,8 @@
-module(rebar_eunit_SUITE).
-export([all/0, groups/0]).
-export([init_per_suite/1, init_per_group/2, end_per_group/2]).
-export([init_per_suite/1, end_per_suite/1]).
-export([init_per_group/2, end_per_group/2]).
-export([basic_app_compiles/1, basic_app_files/1]).
-export([basic_app_exports/1, basic_app_testset/1]).
-export([basic_app_eunit_macro/1]).
@ -60,6 +61,8 @@ init_per_suite(Config) ->
{ok, _} = zip:extract(filename:join([PrivDir, "multi_app.zip"]), [{cwd, PrivDir}]),
Config.
end_per_suite(Config) -> Config.
init_per_group(basic_app, Config) ->
GroupState = rebar_test_utils:init_rebar_state(Config, "basic_app_"),

Loading…
Cancel
Save