Update for ext/MIME/Base64/
[p5sagit/p5-mst-13.2.git] / ext / MIME / Base64 / t / unicode.t
CommitLineData
6fba102d 1BEGIN {
b9e0df4c 2 unless ($] >= 5.006) {
3 print "1..0\n";
4 exit(0);
5 }
6 if ($ENV{PERL_CORE}) {
7 chdir 't' if -d 't';
8 @INC = '../lib';
9 }
6fba102d 10}
11
12print "1..1\n";
13
14require MIME::Base64;
15
16eval {
17 MIME::Base64::encode(v300);
18};
19
20print "not " unless $@;
21print "ok 1\n";
22