2012-07-11 20:01:58 -07:00
|
|
|
#!/usr/bin/env perl
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
use Test::More;
|
|
|
|
use DDG::Test::Goodie;
|
|
|
|
|
|
|
|
zci answer_type => 'password';
|
|
|
|
zci is_cached => 1;
|
|
|
|
|
|
|
|
ddg_goodie_test(
|
|
|
|
[qw(
|
|
|
|
DDG::Goodie::RouterPasswords
|
|
|
|
)],
|
|
|
|
'Belkin f5d6130' =>
|
|
|
|
test_zci('Default login for the BELKIN F5D6130: Username: (none) Password: password',
|
2012-07-12 11:40:43 -07:00
|
|
|
html => 'Default login for the BELKIN F5D6130:<br><i>Username</i>: (none)<br><i>Password</i>: password'),
|
2012-07-11 20:01:58 -07:00
|
|
|
'Belkin f5d6130 default password' =>
|
|
|
|
test_zci('Default login for the BELKIN F5D6130: Username: (none) Password: password',
|
2012-07-12 11:40:43 -07:00
|
|
|
html => 'Default login for the BELKIN F5D6130:<br><i>Username</i>: (none)<br><i>Password</i>: password'),
|
2012-07-11 20:01:58 -07:00
|
|
|
'Belkin f5d6130 password default' =>
|
|
|
|
test_zci('Default login for the BELKIN F5D6130: Username: (none) Password: password',
|
2012-07-12 11:40:43 -07:00
|
|
|
html => 'Default login for the BELKIN F5D6130:<br><i>Username</i>: (none)<br><i>Password</i>: password'),
|
2012-07-11 20:01:58 -07:00
|
|
|
'default password Belkin f5d6130' =>
|
|
|
|
test_zci('Default login for the BELKIN F5D6130: Username: (none) Password: password',
|
2012-07-12 11:40:43 -07:00
|
|
|
html => 'Default login for the BELKIN F5D6130:<br><i>Username</i>: (none)<br><i>Password</i>: password'),
|
2012-07-11 20:01:58 -07:00
|
|
|
'Belkin f5d6130 password' =>
|
|
|
|
test_zci('Default login for the BELKIN F5D6130: Username: (none) Password: password',
|
2012-07-12 11:40:43 -07:00
|
|
|
html => 'Default login for the BELKIN F5D6130:<br><i>Username</i>: (none)<br><i>Password</i>: password'),
|
2012-07-11 20:01:58 -07:00
|
|
|
'default BELKIN password f5d6130' =>
|
|
|
|
test_zci('Default login for the BELKIN F5D6130: Username: (none) Password: password',
|
2012-07-12 11:40:43 -07:00
|
|
|
html => 'Default login for the BELKIN F5D6130:<br><i>Username</i>: (none)<br><i>Password</i>: password'),
|
2012-07-11 20:01:58 -07:00
|
|
|
'password bELKIN default f5d6130' =>
|
|
|
|
test_zci('Default login for the BELKIN F5D6130: Username: (none) Password: password',
|
2012-07-12 11:40:43 -07:00
|
|
|
html => 'Default login for the BELKIN F5D6130:<br><i>Username</i>: (none)<br><i>Password</i>: password'),
|
2012-07-11 20:01:58 -07:00
|
|
|
);
|
|
|
|
|
|
|
|
done_testing;
|