MD5: Add tests and fix previous commit.

master
gdrooid 2014-07-04 23:05:13 +02:00
parent 0aa023c079
commit 801c3d561c
2 changed files with 3 additions and 1 deletions

View File

@ -31,7 +31,7 @@ sub html_output {
}
handle remainder => sub {
s/of "?([^"]*)"?/$1/;
s/^of "?([^"]*)"?$/$1/;
if (/^\s*(.*)\s*$/) {
# Exit unless a string is found
return unless $1;

View File

@ -15,6 +15,8 @@ ddg_goodie_test(
'md5 digest this!' => test_zci('3838c8fb10a114e6d21203359ef147ad', html=>qr/.*/),
'duckduckgo md5' => test_zci('96898bb8544fa56b03c08cdc09886c6c', html=>qr/.*/),
'md5sum the sum of a string' => test_zci('a704c8833f9850cd342ead27207ca1a1', html=>qr/.*/),
'md5 of password' => test_zci('5f4dcc3b5aa765d61d8327deb882cf99', html=>qr/.*/),
'md5sum of "this"' => test_zci('9e925e9341b490bfd3b4c4ca3b0c1ef2', html=>qr/.*/),
);
done_testing;