diff options
author | Russ Allbery <rra@stanford.edu> | 2013-03-27 17:33:10 -0700 |
---|---|---|
committer | Russ Allbery <rra@stanford.edu> | 2013-03-27 17:33:10 -0700 |
commit | 04b69b2f156cc1155ae31eaaf4cf4ad53755ba99 (patch) | |
tree | 77e7ae5ab547ae94a2428d4a71ec7aed7af14ed9 /perl | |
parent | e446f05ab4949cbc24e78364f8719ecb5afe2357 (diff) | |
parent | 6d4d689361c29528cf92bc10750e260d48529b69 (diff) |
Merge tag 'upstream/1.0' into debian
Upstream version 1.0
Diffstat (limited to 'perl')
-rwxr-xr-x | perl/t/wa-keyring.t | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/perl/t/wa-keyring.t b/perl/t/wa-keyring.t index 3011d54..7ba5723 100755 --- a/perl/t/wa-keyring.t +++ b/perl/t/wa-keyring.t @@ -11,13 +11,20 @@ use strict; use warnings; +use Test::More; + +BEGIN { + eval 'use WebAuth 3.06 qw(WA_KEY_AES WA_AES_128)'; + plan skip_all => 'WebAuth 3.06 required for testing wa-keyring' + if $@; +} + use POSIX qw(strftime); -use Test::More tests => 68; -use WebAuth 3.06 qw(WA_KEY_AES WA_AES_128); use WebAuth::Key 1.01 (); use WebAuth::Keyring 1.02 (); BEGIN { + plan tests => 68; use_ok('Wallet::Admin'); use_ok('Wallet::Config'); use_ok('Wallet::Object::WAKeyring'); |