Rebar and eunit changes

Initial rebar compile - which exposed eunit tets failures associated
with changes to file structures and filename references
This commit is contained in:
martinsumner 2016-09-19 18:50:11 +01:00
parent a1c970a66a
commit 4e28e4173c
6 changed files with 96 additions and 26 deletions

16
src/eleveleddb_app.erl Normal file
View file

@ -0,0 +1,16 @@
-module(eleveleddb_app).
-behaviour(application).
%% Application callbacks
-export([start/2, stop/1]).
%% ===================================================================
%% Application callbacks
%% ===================================================================
start(_StartType, _StartArgs) ->
eleveleddb_sup:start_link().
stop(_State) ->
ok.