USING: syndication io kernel io.files tools.test io.encodings.binary calendar urls xml.writer ; IN: syndication.tests : load-news-file ( filename -- feed ) #! Load an news syndication file and process it, returning #! it as an feed tuple. binary file-contents parse-feed ; [ T{ feed f "Meerkat" URL" http://meerkat.oreillynet.com" { T{ entry f "XML: A Disruptive Technology" URL" http://c.moreover.com/click/here.pl?r123" "\n XML is placing increasingly heavy loads on the existing technical\n infrastructure of the Internet.\n " f } } } ] [ "vocab:syndication/test/rss1.xml" load-news-file ] unit-test [ T{ feed f "dive into mark" URL" http://example.org/" { T{ entry f "Atom draft-07 snapshot" URL" http://example.org/2005/04/02/atom" "\n
\n

[Update: The Atom draft is finished.]

\n
\n " T{ timestamp f 2003 12 13 8 29 29 T{ duration f 0 0 0 -4 0 0 } } } } } ] [ "vocab:syndication/test/atom.xml" load-news-file ] unit-test [ ] [ "vocab:syndication/test/atom.xml" load-news-file feed>xml xml>string drop ] unit-test