tests: remove legacy functions / tests (#2434)

This commit is contained in:
Casper 2022-03-02 14:55:17 +01:00 committed by GitHub
parent 4203afec3f
commit 6d1c740310
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
28 changed files with 0 additions and 466 deletions

View file

@ -1,14 +1,6 @@
load 'test_helper/common'
setup() {
run_setup_file_if_necessary
}
teardown() {
run_teardown_file_if_necessary
}
setup_file() {
local PRIVATE_CONFIG
PRIVATE_CONFIG="$(duplicate_config_for_container .)"
@ -28,10 +20,6 @@ teardown_file() {
docker rm -f mail_with_imap
}
@test "first" {
skip 'only used to call setup_file from setup'
}
#
# RIMAP
#
@ -52,7 +40,3 @@ teardown_file() {
run docker exec mail_with_imap /bin/sh -c "nc -w 5 0.0.0.0 25 < /tmp/docker-mailserver-test/auth/smtp-auth-login.txt | grep 'Authentication successful'"
assert_success
}
@test "last" {
skip 'only used to call teardown_file from teardown'
}