22 lines
514 B
Python
22 lines
514 B
Python
|
|
||
|
from __future__ import absolute_import, division, print_function
|
||
|
|
||
|
import pytest
|
||
|
import re
|
||
|
import time
|
||
|
from dosagelib.rss import parseFeed
|
||
|
|
||
|
class TestFeed(object):
|
||
|
"""
|
||
|
Tests for rss.py
|
||
|
"""
|
||
|
|
||
|
def test_parseFeed(self):
|
||
|
testTime = time.localtime(1560000000.0)
|
||
|
feed = parseFeed('./tests/mocks/dailydose.rss', testTime)
|
||
|
|
||
|
xmlBlob = feed.getXML()
|
||
|
|
||
|
assert u'PlumedDotage - 4034.png'.encode() in xmlBlob
|
||
|
assert u'PachinkoParlor - 20190626.jpg'.encode() not in xmlBlob
|