diff options
author | Lars Thorsen <[email protected]> | 2016-05-20 12:23:56 +0200 |
---|---|---|
committer | Lars Thorsen <[email protected]> | 2016-06-17 07:51:01 +0200 |
commit | d29526af250bb33a702556bb91cda136324b5b8c (patch) | |
tree | c2271e488f4c3e6b9ca4d5a96e9364b3d08f55a7 | |
parent | f579196545e57fe99f42b14bf77e153cf41a9263 (diff) | |
download | otp-d29526af250bb33a702556bb91cda136324b5b8c.tar.gz otp-d29526af250bb33a702556bb91cda136324b5b8c.tar.bz2 otp-d29526af250bb33a702556bb91cda136324b5b8c.zip |
[erl_docgen] Update the test suites to follow the new style
* Eliminate use of ?t macro
* Remove the doc clauses
-rw-r--r-- | lib/erl_docgen/test/erl_docgen_SUITE.erl | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/erl_docgen/test/erl_docgen_SUITE.erl b/lib/erl_docgen/test/erl_docgen_SUITE.erl index a202fefa9d..972fda5762 100644 --- a/lib/erl_docgen/test/erl_docgen_SUITE.erl +++ b/lib/erl_docgen/test/erl_docgen_SUITE.erl @@ -40,12 +40,10 @@ init_per_group(_GroupName, Config) -> end_per_group(_GroupName, Config) -> Config. -app() -> - [{doc, "Test that the erl_docgen app file is ok"}]. +%% Test that the erl_docgen app file is ok app(Config) when is_list(Config) -> - ok = ?t:app_test(erl_docgen). + ok = test_server:app_test(erl_docgen). -appup() -> - [{doc, "Test that the erl_docgen appup file is ok"}]. +%% Test that the erl_docgen appup file is ok appup(Config) when is_list(Config) -> - ok = ?t:appup_test(erl_docgen). + ok = test_server:appup_test(erl_docgen). |