view tests/FeedUpdaterTests.py @ 249:5695197a3ca5

Add an about Qt help menu item
author Dirk Olmes <dirk@xanthippe.ping.de>
date Thu, 09 Jun 2016 05:19:03 +0200
parents 7c719c4f5655
children
line wrap: on
line source

# -*- coding: utf-8 -*-
import unittest
from Feed import Feed
from FeedUpdater import FeedUpdater
from FeedUpdater import FeedUpdateException

class FeedUpdaterTests(unittest.TestCase):
    def testFeedContainsInvalidUrl(self):
        feed = Feed("invalid", "http://thisurldoesnotexist.xxx")
        try:
            FeedUpdater(None, feed).update()
            self.fail("updating an invalid URL must fail")
        except FeedUpdateException:
            # this one was expected
            pass

    def testFeedContainsValidUrl(self):
        feed = Feed("valid", "http://www.joelonsoftware.com/rss.xml")
        result = FeedUpdater(None, feed).getFeed()
        self.assertEqual("Joel on Software", result["feed"].title)

if __name__ == "__main__":
    # import sys;sys.argv = ['', 'Test.testName']
    unittest.main()