Add missing rebar_qc:clean/2

This commit is contained in:
Joseph Wayne Norton 2012-11-23 21:26:48 +09:00
parent 92fb083011
commit 7d624e9018

View file

@ -26,7 +26,7 @@
%% ------------------------------------------------------------------- %% -------------------------------------------------------------------
-module(rebar_qc). -module(rebar_qc).
-export([qc/2, triq/2, eqc/2]). -export([qc/2, triq/2, eqc/2, clean/2]).
-include("rebar.hrl"). -include("rebar.hrl").
@ -50,6 +50,9 @@ eqc(Config, _AppFile) ->
ok = load_qc_mod(eqc), ok = load_qc_mod(eqc),
run_qc(Config, qc_opts(Config), eqc). run_qc(Config, qc_opts(Config), eqc).
clean(_Config, _File) ->
rebar_file_utils:rm_rf(?QC_DIR).
%% =================================================================== %% ===================================================================
%% Internal functions %% Internal functions
%% =================================================================== %% ===================================================================