The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!perl -T

use strict;
use warnings;
use Test::Simple tests => 8;

use Passwd::Keyring::Auto;

my $ring = Passwd::Keyring::Auto::get_keyring();

ok( defined($ring),   'new() works' );

$ring->clear_password("Paul", 'my@@domain');
ok(1, "clear_password works");

ok( $ring->clear_password("Gregory", 'my@@domain'));
ok(1, "clear_password works");

ok( $ring->clear_password("Paul", 'other@@domain'));
ok(1, "clear_password works");

ok( $ring->clear_password("Duke", 'my@@domain'));
ok(1, "clear_password works");