mirror of
https://github.com/correl/rebar.git
synced 2024-11-14 19:19:30 +00:00
add Emacs/vi header to non-dummy test modules
This commit is contained in:
parent
47dba1bbc3
commit
aa5b8ac772
15 changed files with 30 additions and 0 deletions
|
@ -1,3 +1,5 @@
|
||||||
|
%% -*- erlang-indent-level: 4;indent-tabs-mode: nil -*-
|
||||||
|
%% ex: ts=4 sw=4 et
|
||||||
-module(bug_5_rt).
|
-module(bug_5_rt).
|
||||||
|
|
||||||
-compile(export_all).
|
-compile(export_all).
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
%% -*- erlang-indent-level: 4;indent-tabs-mode: nil -*-
|
||||||
|
%% ex: ts=4 sw=4 et
|
||||||
-module(ct1_rt).
|
-module(ct1_rt).
|
||||||
|
|
||||||
-compile(export_all).
|
-compile(export_all).
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
%% -*- erlang-indent-level: 4;indent-tabs-mode: nil -*-
|
||||||
|
%% ex: ts=4 sw=4 et
|
||||||
-module(ct2_rt).
|
-module(ct2_rt).
|
||||||
|
|
||||||
-compile(export_all).
|
-compile(export_all).
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
%% -*- erlang-indent-level: 4;indent-tabs-mode: nil -*-
|
||||||
|
%% ex: ts=4 sw=4 et
|
||||||
%%% @doc Plugin handling test
|
%%% @doc Plugin handling test
|
||||||
%%%
|
%%%
|
||||||
%%% This test checks if plugins are loaded correctly.
|
%%% This test checks if plugins are loaded correctly.
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
%% -*- erlang-indent-level: 4;indent-tabs-mode: nil -*-
|
||||||
|
%% ex: ts=4 sw=4 et
|
||||||
-module(eunit_rt).
|
-module(eunit_rt).
|
||||||
-export([files/0, run/1]).
|
-export([files/0, run/1]).
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
%% -*- erlang-indent-level: 4;indent-tabs-mode: nil -*-
|
||||||
|
%% ex: ts=4 sw=4 et
|
||||||
-module(rgen1_rt).
|
-module(rgen1_rt).
|
||||||
|
|
||||||
-compile(export_all).
|
-compile(export_all).
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
%% -*- erlang-indent-level: 4;indent-tabs-mode: nil -*-
|
||||||
|
%% ex: ts=4 sw=4 et
|
||||||
-module(t_custom_config_rt).
|
-module(t_custom_config_rt).
|
||||||
|
|
||||||
-compile(export_all).
|
-compile(export_all).
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
%% -*- erlang-indent-level: 4;indent-tabs-mode: nil -*-
|
||||||
|
%% ex: ts=4 sw=4 et
|
||||||
-module(tdeps1_rt).
|
-module(tdeps1_rt).
|
||||||
|
|
||||||
-compile(export_all).
|
-compile(export_all).
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
%% -*- erlang-indent-level: 4;indent-tabs-mode: nil -*-
|
||||||
|
%% ex: ts=4 sw=4 et
|
||||||
-module(tdeps2_rt).
|
-module(tdeps2_rt).
|
||||||
|
|
||||||
-compile(export_all).
|
-compile(export_all).
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
%% -*- erlang-indent-level: 4;indent-tabs-mode: nil -*-
|
||||||
|
%% ex: ts=4 sw=4 et
|
||||||
-module(tdeps3_rt).
|
-module(tdeps3_rt).
|
||||||
|
|
||||||
-compile(export_all).
|
-compile(export_all).
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
%% -*- erlang-indent-level: 4;indent-tabs-mode: nil -*-
|
||||||
|
%% ex: ts=4 sw=4 et
|
||||||
-module(tdeps_update_rt).
|
-module(tdeps_update_rt).
|
||||||
|
|
||||||
-compile(export_all).
|
-compile(export_all).
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
%% -*- erlang-indent-level: 4;indent-tabs-mode: nil -*-
|
||||||
|
%% ex: ts=4 sw=4 et
|
||||||
-module(thooks_rt).
|
-module(thooks_rt).
|
||||||
|
|
||||||
-include_lib("eunit/include/eunit.hrl").
|
-include_lib("eunit/include/eunit.hrl").
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
%% -*- erlang-indent-level: 4;indent-tabs-mode: nil -*-
|
||||||
|
%% ex: ts=4 sw=4 et
|
||||||
-module(tplugins_rt).
|
-module(tplugins_rt).
|
||||||
-compile(export_all).
|
-compile(export_all).
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
%% -*- erlang-indent-level: 4;indent-tabs-mode: nil -*-
|
||||||
|
%% ex: ts=4 sw=4 et
|
||||||
-module(rebar_require_vsn_tests).
|
-module(rebar_require_vsn_tests).
|
||||||
|
|
||||||
-compile(export_all).
|
-compile(export_all).
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
%% -*- erlang-indent-level: 4;indent-tabs-mode: nil -*-
|
||||||
|
%% ex: ts=4 sw=4 et
|
||||||
-module(rebar_xref_eunit).
|
-module(rebar_xref_eunit).
|
||||||
|
|
||||||
-compile(export_all).
|
-compile(export_all).
|
||||||
|
|
Loading…
Reference in a new issue