10 lines
95 B
Perl
10 lines
95 B
Perl
|
#!/usr/bin/perl
|
||
|
|
||
|
use strict;
|
||
|
use Test::More tests => 1;
|
||
|
use Net::OpenID::Consumer;
|
||
|
|
||
|
ok(1);
|
||
|
|
||
|
1;
|