File: mailer.t

package info (click to toggle)
libmailtools-perl 2.22-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 432 kB
  • sloc: perl: 2,224; makefile: 18
file content (15 lines) | stat: -rw-r--r-- 249 bytes parent folder | download | duplicates (14)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/local/bin/perl -w

use Mail::Mailer;

print "1..2\n";

print "ok 1\n";

$mail = new Mail::Mailer or print "not ";
print "ok 2\n";

undef $mail;

# well until I have a way of getting an address, that is all I can do.
# better than nothing :-)