diff options
author | Lukas Larsson <[email protected]> | 2010-10-12 10:59:47 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2011-02-17 17:28:29 +0100 |
commit | 8f7e33f5865168c737dc90b9e2e29e4da3a2edc1 (patch) | |
tree | 13c33c4f1cd3587693704e2723ddba3b09fbd8b1 /lib | |
parent | f6b19ef8603b46c64f3722ede3915dd1ac67bae8 (diff) | |
download | otp-8f7e33f5865168c737dc90b9e2e29e4da3a2edc1.tar.gz otp-8f7e33f5865168c737dc90b9e2e29e4da3a2edc1.tar.bz2 otp-8f7e33f5865168c737dc90b9e2e29e4da3a2edc1.zip |
Update docbuilder tests to conform with common_test standard
Diffstat (limited to 'lib')
-rw-r--r-- | lib/docbuilder/test/docb_SUITE.erl | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/lib/docbuilder/test/docb_SUITE.erl b/lib/docbuilder/test/docb_SUITE.erl index c871130521..2d368af23d 100644 --- a/lib/docbuilder/test/docb_SUITE.erl +++ b/lib/docbuilder/test/docb_SUITE.erl @@ -17,13 +17,24 @@ %% -module(docb_SUITE). --export([all/1,html/1]). +-export([all/0,groups/0,init_per_group/2,end_per_group/2,html/1]). --include("test_server.hrl"). +-include_lib("common_test/include/ct.hrl"). -include_lib("kernel/include/file.hrl"). -all(suite) -> [html]. +all() -> +[html]. + +groups() -> + []. + +init_per_group(_GroupName, Config) -> + Config. + +end_per_group(_GroupName, Config) -> + Config. + html(suite) -> []; html(Config) when is_list(Config) -> |