diff options
author | Lukas Larsson <[email protected]> | 2010-10-12 10:39:40 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2011-02-17 17:25:13 +0100 |
commit | f02cc10b4bda484996b7b93436fcaf8d714cb3da (patch) | |
tree | f749029b5264a7a797244cf87eb879a347e18a82 /lib/inets/test/ftp_ticket_test.erl | |
parent | 8bd07f450816eaaae52d28740d89ead1f930cd02 (diff) | |
download | otp-f02cc10b4bda484996b7b93436fcaf8d714cb3da.tar.gz otp-f02cc10b4bda484996b7b93436fcaf8d714cb3da.tar.bz2 otp-f02cc10b4bda484996b7b93436fcaf8d714cb3da.zip |
Update inets tests to conform with common_test standard
Diffstat (limited to 'lib/inets/test/ftp_ticket_test.erl')
-rw-r--r-- | lib/inets/test/ftp_ticket_test.erl | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/lib/inets/test/ftp_ticket_test.erl b/lib/inets/test/ftp_ticket_test.erl index 6748df03bb..3b0163a203 100644 --- a/lib/inets/test/ftp_ticket_test.erl +++ b/lib/inets/test/ftp_ticket_test.erl @@ -35,14 +35,24 @@ end_per_testcase(Case, Config) -> ftp_suite_lib:end_per_testcase(Case, Config). -all(suite) -> - {conf,init,tickets(),fin}. +all() -> +tickets(). + +groups() -> + []. + +init_per_group(_GroupName, Config) -> + Config. + +end_per_group(_GroupName, Config) -> + Config. + init(Config) -> ?LIB_MOD:ftpd_init(ticket_test, Config). -tickets() -> - [ticket_6035]. +tickets() -> +[ticket_6035]. fin(Config) -> |