diff options
author | Tino Breddin <t@tolbrino.com> | 2019-04-16 11:52:47 +0200 |
---|---|---|
committer | Tino Breddin <t@tolbrino.com> | 2019-04-16 21:22:12 +0200 |
commit | 33e4c8a079aab17454ed9caad0cb6fd9b1fa92b1 (patch) | |
tree | 09357ccf00165e4cda5dc875030d34c58912c8c4 /test/rebar_edoc_SUITE_data/bad/apps/bar2/src | |
parent | 14928247cda69d953e673ed6b5feb6ff679a2dfc (diff) |
Fix duplicate module naming in edoc test suite data
Diffstat (limited to 'test/rebar_edoc_SUITE_data/bad/apps/bar2/src')
4 files changed, 0 insertions, 89 deletions
diff --git a/test/rebar_edoc_SUITE_data/bad/apps/bar2/src/bar2.app.src b/test/rebar_edoc_SUITE_data/bad/apps/bar2/src/bar2.app.src deleted file mode 100644 index 58de8bc..0000000 --- a/test/rebar_edoc_SUITE_data/bad/apps/bar2/src/bar2.app.src +++ /dev/null @@ -1,16 +0,0 @@ -{application, bar2, - [{description, "An OTP application"}, - {vsn, "0.1.0"}, - {registered, []}, - {mod, { bar2_app, []}}, - {applications, - [kernel, - stdlib - ]}, - {env,[]}, - {modules, []}, - - {maintainers, []}, - {licenses, []}, - {links, []} - ]}. diff --git a/test/rebar_edoc_SUITE_data/bad/apps/bar2/src/bar2.erl b/test/rebar_edoc_SUITE_data/bad/apps/bar2/src/bar2.erl deleted file mode 100644 index 2afb745..0000000 --- a/test/rebar_edoc_SUITE_data/bad/apps/bar2/src/bar2.erl +++ /dev/null @@ -1,12 +0,0 @@ -%% @doc one docline is fine
-%% @doc a second docline causes a failure
-%% @doc if not, then a & causes a bad ref error.
--module(bar2).
--export([bar2/0]).
--export_type([barer2/0]).
-
--type barer2() :: string().
-
-% @doc Bar2 bars the bar2.
--spec bar2() -> barer2().
-bar2() -> "Barer2".
diff --git a/test/rebar_edoc_SUITE_data/bad/apps/bar2/src/bar2_app.erl b/test/rebar_edoc_SUITE_data/bad/apps/bar2/src/bar2_app.erl deleted file mode 100644 index d0058a0..0000000 --- a/test/rebar_edoc_SUITE_data/bad/apps/bar2/src/bar2_app.erl +++ /dev/null @@ -1,26 +0,0 @@ -%%%------------------------------------------------------------------- -%% @doc bar2 public API -%% @end -%%%------------------------------------------------------------------- - --module(bar2_app). - --behaviour(application). - -%% Application callbacks --export([start/2, stop/1]). - -%%==================================================================== -%% API -%%==================================================================== - -start(_StartType, _StartArgs) -> - bar2_sup:start_link(). - -%%-------------------------------------------------------------------- -stop(_State) -> - ok. - -%%==================================================================== -%% Internal functions -%%==================================================================== diff --git a/test/rebar_edoc_SUITE_data/bad/apps/bar2/src/bar2_sup.erl b/test/rebar_edoc_SUITE_data/bad/apps/bar2/src/bar2_sup.erl deleted file mode 100644 index 0bdaf4a..0000000 --- a/test/rebar_edoc_SUITE_data/bad/apps/bar2/src/bar2_sup.erl +++ /dev/null @@ -1,35 +0,0 @@ -%%%------------------------------------------------------------------- -%% @doc bar2 top level supervisor. -%% @end -%%%------------------------------------------------------------------- - --module(bar2_sup). - --behaviour(supervisor). - -%% API --export([start_link/0]). - -%% Supervisor callbacks --export([init/1]). - --define(SERVER, ?MODULE). - -%%==================================================================== -%% API functions -%%==================================================================== - -start_link() -> - supervisor:start_link({local, ?SERVER}, ?MODULE, []). - -%%==================================================================== -%% Supervisor callbacks -%%==================================================================== - -%% Child :: {Id,StartFunc,Restart,Shutdown,Type,Modules} -init([]) -> - {ok, { {one_for_all, 0, 1}, []} }. - -%%==================================================================== -%% Internal functions -%%==================================================================== |