~pythoneers/ubuntu/lucid/feedparser/ltsppa

« back to all changes in this revision

Viewing changes to tests/wellformed/atom/entry_contributor_multiple.xml

  • Committer: Bazaar Package Importer
  • Author(s): Carlos Galisteo
  • Date: 2007-01-09 15:27:45 UTC
  • mfrom: (2.1.4 feisty)
  • Revision ID: james.westby@ubuntu.com-20070109152745-pg3zhn67yyaumwv3
Tags: 4.1-7
Fixed css link for *.html inside /doc. (Closes: #405343)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<!--
2
 
Description: multiple entry contributors
3
 
Expect:      not bozo and entries[0]['contributors'] == [{'name': u'Contributor 1', 'email': u'me@example.com', 'href': u'http://example.com/'}, {'name': u'Contributor 2', 'email': u'you@example.com', 'href': 'http://two.example.com/'}]
4
 
-->
5
 
<feed version="0.3" xmlns="http://purl.org/atom/ns#">
6
 
<entry>
7
 
  <contributor>
8
 
    <name>Contributor 1</name>
9
 
    <email>me@example.com</email>
10
 
    <url>http://example.com/</url>
11
 
  </contributor>
12
 
  <contributor>
13
 
    <name>Contributor 2</name>
14
 
    <email>you@example.com</email>
15
 
    <url>http://two.example.com/</url>
16
 
  </contributor>
17
 
</entry>
18
 
</feed>
 
 
b'\\ No newline at end of file'