02-atom.js 553 B

123456789101112131415161718
  1. exports.name = "Atom (1.0)";
  2. exports.file = "/Atom_Example.xml";
  3. exports.expected = {
  4. type: "atom",
  5. id: "urn:uuid:60a76c80-d399-11d9-b91C-0003939e0af6",
  6. title: "Example Feed",
  7. link: "http://example.org/feed/",
  8. description: "A subtitle.",
  9. updated: new Date("2003-12-13T18:30:02Z"),
  10. author: "johndoe@example.com",
  11. items: [{
  12. id: "urn:uuid:1225c695-cfb8-4ebb-aaaa-80da344efa6a",
  13. title: "Atom-Powered Robots Run Amok",
  14. link: "http://example.org/2003/12/13/atom03",
  15. description: "Some text.",
  16. pubDate: new Date("2003-12-13T18:30:02Z")
  17. }]
  18. };