mirror of
https://github.com/LightAir/turbo-rss.git
synced 2026-02-04 12:06:20 +00:00
14 lines
162 B
JavaScript
14 lines
162 B
JavaScript
/*
|
|
use nodeunit to run tests.
|
|
*/
|
|
|
|
var RSS = require('../index');
|
|
|
|
var feed = new RSS();
|
|
|
|
feed.item();
|
|
feed.item();
|
|
feed.item();
|
|
|
|
console.log(feed.xml(true));
|