Merge pull request #27 from norton/norton-qc-clean

Add missing clean/2
This commit is contained in:
Dave Smith 2012-11-23 07:17:48 -08:00
commit 7325784fb0

View file

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