You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

8 lines
282 B

-module(test_plugin).
-compile(export_all).
fwibble(Config, _) ->
Pwd = rebar_utils:get_cwd(),
Ok = filelib:is_regular(filename:join(Pwd, "fwibble.test")),
rebar_log:log(info, "~p:~p in ~s :: ~p~n", [test_plugin, clean, Pwd, Ok]),
ok = file:delete("fwibble.test").