view backend/couchdb/CouchApp/feedworm/views/feeds/map.js @ 199:1220e62b63dd

implement a somewhat useful unit test for the Feed class
author dirk
date Fri, 27 Jan 2012 02:51:36 +0100
parents a5bda54309ba
children
line wrap: on
line source

function(doc)
{
    if (doc.doctype == "feed")
    {
        emit(doc._id, doc)
    }
}