# HG changeset patch # User Maxim Dounin # Date 1234354482 -10800 # Node ID 4715bd4d469301303679085249908f63e536e88f # Parent b9bf423929cceb358e1fd531a960cf078b97d460 Tests: auth login with username in 0.7.34, remove TODO. diff --git a/imap.t b/imap.t --- a/imap.t +++ b/imap.t @@ -111,9 +111,6 @@ my $s = Test::Nginx::IMAP->new(); # auth login with username -TODO: { -local $TODO = 'not supported yet'; - $s = Test::Nginx::IMAP->new(); $s->read(); @@ -123,6 +120,4 @@ local $TODO = 'not supported yet'; $s->send(encode_base64('secret', '')); $s->ok('auth login with username'); -} - ############################################################################### diff --git a/pop3.t b/pop3.t --- a/pop3.t +++ b/pop3.t @@ -111,9 +111,6 @@ my $s = Test::Nginx::POP3->new(); # auth login with username -TODO: { -local $TODO = 'not supported yet'; - $s = Test::Nginx::POP3->new(); $s->read(); @@ -123,6 +120,4 @@ local $TODO = 'not supported yet'; $s->send(encode_base64('secret', '')); $s->ok('auth login with username'); -} - ############################################################################### diff --git a/smtp.t b/smtp.t --- a/smtp.t +++ b/smtp.t @@ -129,9 +129,6 @@ my $s = Test::Nginx::SMTP->new(); # [MS-XLOGIN]: SMTP Protocol AUTH LOGIN Extension Specification # http://download.microsoft.com/download/5/D/D/5DD33FDF-91F5-496D-9884-0A0B0EE698BB/%5BMS-XLOGIN%5D.pdf -TODO: { -local $TODO = 'not supported yet'; - $s = Test::Nginx::SMTP->new(); $s->read(); $s->send('EHLO example.com'); @@ -142,8 +139,6 @@ local $TODO = 'not supported yet'; $s->send(encode_base64('secret', '')); $s->authok('auth login with username'); -} - # Try auth plain with pipelining TODO: {