aboutsummaryrefslogtreecommitdiffstats
path: root/lib/et/test/et_SUITE.erl
diff options
context:
space:
mode:
authorBjörn-Egil Dahlberg <[email protected]>2016-05-03 16:24:02 +0200
committerBjörn-Egil Dahlberg <[email protected]>2016-05-04 12:10:39 +0200
commitd8028da128c4382fdc5781df70a9ca5d56f38694 (patch)
tree57be312cdcc50d45904040db6959e583cc534dfd /lib/et/test/et_SUITE.erl
parent4a355fd8c7a2d4410827ddd042e607238f48f7e8 (diff)
downloadotp-d8028da128c4382fdc5781df70a9ca5d56f38694.tar.gz
otp-d8028da128c4382fdc5781df70a9ca5d56f38694.tar.bz2
otp-d8028da128c4382fdc5781df70a9ca5d56f38694.zip
et: Remove unnecessary boilerplate in tests
Diffstat (limited to 'lib/et/test/et_SUITE.erl')
-rw-r--r--lib/et/test/et_SUITE.erl24
1 files changed, 4 insertions, 20 deletions
diff --git a/lib/et/test/et_SUITE.erl b/lib/et/test/et_SUITE.erl
index 4a26b46439..199aff43a8 100644
--- a/lib/et/test/et_SUITE.erl
+++ b/lib/et/test/et_SUITE.erl
@@ -16,7 +16,8 @@
%%
-module(et_SUITE).
--compile([export_all]).
+-export([suite/0, all/0]).
+-export([app/1, appup/1]).
-include_lib("common_test/include/ct.hrl").
suite() ->
@@ -25,27 +26,10 @@ suite() ->
all() ->
[app, appup].
-groups() ->
- [].
-
-init_per_suite(Config) ->
- Config.
-
-end_per_suite(_Config) ->
- ok.
-
-init_per_group(_GroupName, Config) ->
- Config.
-
-end_per_group(_GroupName, Config) ->
- Config.
-
-app() ->
- [{doc, "Test that the et app file is ok"}].
+%% Test that the et app file is ok
app(Config) when is_list(Config) ->
ok = ?t:app_test(et).
-appup() ->
- [{doc, "Test that the et appup file is ok"}].
+%% Test that the et appup file is ok
appup(Config) when is_list(Config) ->
ok = ?t:appup_test(et).