summaryrefslogtreecommitdiff
path: root/test/rebar_localfs_resource.erl
diff options
context:
space:
mode:
Diffstat (limited to 'test/rebar_localfs_resource.erl')
-rw-r--r--test/rebar_localfs_resource.erl8
1 files changed, 7 insertions, 1 deletions
diff --git a/test/rebar_localfs_resource.erl b/test/rebar_localfs_resource.erl
index d60421e..3d1296a 100644
--- a/test/rebar_localfs_resource.erl
+++ b/test/rebar_localfs_resource.erl
@@ -2,6 +2,7 @@
%% ex: ts=4 sw=4 et
%%
%% @doc A localfs custom resource (for testing purposes only)
+%% implementing the deprecated rebar_resource instead of v2
%%
%% ```
%% {deps, [
@@ -13,13 +14,18 @@
-behaviour(rebar_resource).
--export([lock/2
+-export([init/1
+ ,lock/2
,download/3
,needs_update/2
,make_vsn/1]).
-include_lib("eunit/include/eunit.hrl").
+-spec init(rebar_state:t()) -> {ok, term()}.
+init(_State) ->
+ {ok, #{}}.
+
lock(AppDir, {localfs, Path, _Ref}) ->
lock(AppDir, {localfs, Path});
lock(_AppDir, {localfs, Path}) ->