mirror of https://gitlab.com/bashrc2/epicyon
Date test
parent
96c139a63e
commit
ec87fbf4f8
4
tests.py
4
tests.py
|
@ -2437,6 +2437,10 @@ def testFirstParagraphFromString():
|
|||
def testParseFeedDate():
|
||||
print('testParseFeedDate')
|
||||
|
||||
pubDate = "2020-12-14T00:08:06+00:00"
|
||||
publishedDate = parseFeedDate(pubDate)
|
||||
assert publishedDate == "2020-12-14 00:08:06+00:00"
|
||||
|
||||
pubDate = "Tue, 08 Dec 2020 06:24:38 -0600"
|
||||
publishedDate = parseFeedDate(pubDate)
|
||||
assert publishedDate == "2020-12-08 12:24:38+00:00"
|
||||
|
|
Loading…
Reference in New Issue