class TestMSClose
Public Instance Methods
test_close()
click to toggle source
# File vendor/qwik/lib/qwik/test-ms-close.rb, line 21 def test_close # Alice create a new ML. send_normal_mail('alice@example.net') ok_log(["[test]: New ML by alice@example.net", "[test]: Add: alice@example.net", "[test]: QwikPost: test", "[test:1]: Send:"]) # Alice unsubscrive from the ML. The ML will be closed. unsubscribe('alice@example.net') ok_log(["[test]: Remove: alice@example.net", "[test]: ML Closed", "[test]: Unsubscribe: alice@example.net"]) end