comparison auth_basic.t @ 262:d4d9bbe627a8

Tests: {SHA} passwords will appear in 1.3.13.
author Maxim Dounin <mdounin@mdounin.ru>
date Wed, 13 Feb 2013 18:22:40 +0400
parents 024bae0ecd0c
children a9621dbbd0d4
comparison
equal deleted inserted replaced
261:9b1df914171f 262:d4d9bbe627a8
101 or $t->has_module('--with-openssl'); 101 or $t->has_module('--with-openssl');
102 102
103 like(http_get_auth('/', 'ssha', 'password'), qr!SEETHIS!, 'ssha'); 103 like(http_get_auth('/', 'ssha', 'password'), qr!SEETHIS!, 'ssha');
104 104
105 TODO: { 105 TODO: {
106 local $TODO = 'not yet'; 106 local $TODO = 'not yet' unless $t->has_version('1.3.13');
107 like(http_get_auth('/', 'sha', 'password'), qr!SEETHIS!, 'sha'); 107 like(http_get_auth('/', 'sha', 'password'), qr!SEETHIS!, 'sha');
108 } 108 }
109 109
110 } 110 }
111 111