25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
282 B

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