ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/OpenSSL/t/07_Name.t
Revision: 1.2
Committed: Sat Oct 27 02:57:56 2001 UTC (22 years, 7 months ago) by root
Content type: application/x-troff
Branch: MAIN
CVS Tags: BEFORE_5_8_REGEX_FIX, HEAD
Changes since 1.1: +2 -2 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 stefan 1.1
2     use Test;
3     BEGIN { plan tests => 3 };
4 root 1.2 use OpenSSL::Name;
5 stefan 1.1 ok(1);
6    
7 root 1.2 $n = new OpenSSL::Name;
8 stefan 1.1
9     $n->add('Email', '<stefan@hello-penguin.com>');
10     $n->add('Email', "<stefan$_\@hello-penguin.com>") for (1..10);
11     ok(1);
12    
13     $n->add(47, 'oesi@plan9.de');
14     ok(1);