File: test_plugin.erl

package info (click to toggle)
rebar 2.6.4-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,428 kB
  • sloc: erlang: 13,631; sh: 586; python: 103; ansic: 56; makefile: 38
file content (8 lines) | stat: -rw-r--r-- 282 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
-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").