1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
#!/usr/bin/perl
use strict;
use warnings;
use Test::More tests => 8;
use XML::RSS;
{
my $rss = XML::RSS->new();
$rss->parsefile(File::Spec->catfile(File::Spec->curdir(), "t", "data", "merlyn1.rss"));
{
my $item = $rss->{items}->[0];
# TEST
is ($item->{dc}->{creator}, "merlyn",
"item[0]/dc/creator in RSS 1.0"
);
# TEST
is ($item->{dc}->{date}, "2006-10-05T14:56:02+00:00",
"item[0]/dc/date in RSS 1.0"
);
# TEST
is ($item->{dc}->{subject}, "journal",
"item[0]/dc/subject in RSS 1.0"
);
}
}
{
my $rss = XML::RSS->new(version => "2.0");
$rss->parsefile(File::Spec->catfile(File::Spec->curdir(), "t", "data", "merlyn1.rss"));
{
my $item = $rss->{items}->[0];
# TEST
is ($item->{dc}->{creator}, "merlyn",
"item[0]/dc/creator in RSS 1.0"
);
# TEST
is ($item->{dc}->{date}, "2006-10-05T14:56:02+00:00",
"item[0]/dc/date in RSS 1.0"
);
# TEST
is ($item->{dc}->{subject}, "journal",
"item[0]/dc/subject in RSS 1.0"
);
}
}
{
my $rss = XML::RSS->new();
$rss->parsefile(
File::Spec->catfile(
File::Spec->curdir(), "t", "data", "1.0","with_content.rdf"
)
);
{
my $item = $rss->{items}->[0];
# TEST
is ($item->{content}->{encoded}, "<p>Hello!</p>",
"Testing the \"content\" namespace");
}
}
{
my $rss = XML::RSS->new();
$rss->parsefile(
File::Spec->catfile(
File::Spec->curdir(), "examples", "1.0", "rss1.0.rdf",
)
);
# TEST
is (
$rss->image("rdf:resource"),
"http://freshmeat.net/images/fm.mini.jpg",
"rdf:resource for image was read correctly.",
);
}
|