diff options
author | Lukas Larsson <[email protected]> | 2010-10-12 11:00:08 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2011-02-17 17:28:29 +0100 |
commit | 663982e3e8d2dc34353e342240fa80aca25a8923 (patch) | |
tree | 7339fbe997b4b31cf09333a5781f292471dbcf1f /lib | |
parent | 8f7e33f5865168c737dc90b9e2e29e4da3a2edc1 (diff) | |
download | otp-663982e3e8d2dc34353e342240fa80aca25a8923.tar.gz otp-663982e3e8d2dc34353e342240fa80aca25a8923.tar.bz2 otp-663982e3e8d2dc34353e342240fa80aca25a8923.zip |
Update edoc tests to conform with common_test standard
Diffstat (limited to 'lib')
-rw-r--r-- | lib/edoc/test/edoc.spec | 2 | ||||
-rw-r--r-- | lib/edoc/test/edoc_SUITE.erl | 18 |
2 files changed, 15 insertions, 5 deletions
diff --git a/lib/edoc/test/edoc.spec b/lib/edoc/test/edoc.spec index 8443a28028..02e3eca8fe 100644 --- a/lib/edoc/test/edoc.spec +++ b/lib/edoc/test/edoc.spec @@ -1 +1 @@ -{topcase, {dir, "../edoc_test"}}. +{suites,"edoc_test",all}. diff --git a/lib/edoc/test/edoc_SUITE.erl b/lib/edoc/test/edoc_SUITE.erl index ea833f89b2..e095913dc7 100644 --- a/lib/edoc/test/edoc_SUITE.erl +++ b/lib/edoc/test/edoc_SUITE.erl @@ -17,16 +17,26 @@ %% -module(edoc_SUITE). --include("test_server.hrl"). +-include_lib("test_server/include/test_server.hrl"). %% Test server specific exports --export([all/1]). +-export([all/0,groups/0,init_per_group/2,end_per_group/2]). %% Test cases -export([build_std/1]). -all(suite) -> - [build_std]. +all() -> +[build_std]. + +groups() -> + []. + +init_per_group(_GroupName, Config) -> + Config. + +end_per_group(_GroupName, Config) -> + Config. + build_std(suite) -> []; |