您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

8 行
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").