Python django.contrib.sitemaps 模块,GenericSitemap() 实例源码

我们从Python开源项目中,提取了以下1个代码示例,用于说明如何使用django.contrib.sitemaps.GenericSitemap()

项目:tissuelab    作者:VirtualPlants    | 项目源码 | 文件源码
def test_sitemap_item(self):
        """
        Check to make sure that the raw item is included with each
        Sitemap.get_url() url result.
        """
        test_sitemap = GenericSitemap({'queryset': TestModel.objects.all()})
        def is_testmodel(url):
            return isinstance(url['item'], TestModel)
        item_in_url_info = all(map(is_testmodel, test_sitemap.get_urls()))
        self.assertTrue(item_in_url_info)