diff options
| author | fukachan <fukachan> | 2001-10-13 03:17:25 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2001-10-13 03:17:25 +0000 |
| commit | 1ccc7efcdaf661b9d6fc5d39d67849c19630ca96 (patch) | |
| tree | 5f40095f0f09b6d9c5c740a13e2705ee7558c4c0 | |
| parent | b4aa564d23b1656ed623b2f8ab06aac279136ccc (diff) | |
| download | fml8-1ccc7efcdaf661b9d6fc5d39d67849c19630ca96.tar.gz fml8-1ccc7efcdaf661b9d6fc5d39d67849c19630ca96.tar.bz2 fml8-1ccc7efcdaf661b9d6fc5d39d67849c19630ca96.zip | |
test tool for FML::Confirm
| -rwxr-xr-x | regress/base/confirm.pl | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/regress/base/confirm.pl b/regress/base/confirm.pl new file mode 100755 index 00000000..8fe40cf3 --- /dev/null +++ b/regress/base/confirm.pl @@ -0,0 +1,18 @@ +#!/usr/bin/env perl +# +# $FML$ +# + +use lib qw(../../fml/lib ../../cpan/lib); +use FML::Confirm; + +my $confirm = new FML::Confirm { + cache_dir => "/tmp/confirm.cache", + class => "subscribe", + address => "fukachan\@fml.org", + buffer => "subscribe kenichi fukamachi", +}; + +print "id = ", $confirm->assign_id(), "\n"; + +exit 0; |
