Merge branch 'fixDomainOnCategory' of https://github.com/pzelnip/python-feedgen
Signed-off-by: Lars Kiesow <lkiesow@uos.de>
This commit is contained in:
commit
303c047697
1 changed files with 17 additions and 0 deletions
|
@ -75,3 +75,20 @@ class TestSequenceFunctions(unittest.TestCase):
|
||||||
assert len(fg.entry()) == 1
|
assert len(fg.entry()) == 1
|
||||||
fg.remove_entry(fe)
|
fg.remove_entry(fe)
|
||||||
assert len(fg.entry()) == 0
|
assert len(fg.entry()) == 0
|
||||||
|
|
||||||
|
def test_categoryHasDomain(self):
|
||||||
|
fg = FeedGenerator()
|
||||||
|
fg.title('some title')
|
||||||
|
fg.link( href='http://www.dontcare.com', rel='alternate' )
|
||||||
|
fg.description('description')
|
||||||
|
fe = fg.add_entry()
|
||||||
|
fe.id('http://lernfunk.de/media/654321/1')
|
||||||
|
fe.title('some title')
|
||||||
|
fe.category([
|
||||||
|
{'term' : 'category',
|
||||||
|
'scheme': 'http://www.somedomain.com/category',
|
||||||
|
'label' : 'Category',
|
||||||
|
}])
|
||||||
|
|
||||||
|
result = fg.rss_str()
|
||||||
|
assert 'domain="http://www.somedomain.com/category"' in result
|
||||||
|
|
Loading…
Reference in a new issue