本文整理汇总了Python中hackernews.HackerNews.parse_news_list方法的典型用法代码示例。如果您正苦于以下问题:Python HackerNews.parse_news_list方法的具体用法?Python HackerNews.parse_news_list怎么用?Python HackerNews.parse_news_list使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类hackernews.HackerNews
的用法示例。
在下文中一共展示了HackerNews.parse_news_list方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: TestHackerNewsParser
# 需要导入模块: from hackernews import HackerNews [as 别名]
# 或者: from hackernews.HackerNews import parse_news_list [as 别名]
class TestHackerNewsParser(unittest.TestCase):
def setUp(self):
self.hn = HackerNews()
def test_parsed_score(self):
"""Every score should be a digit"""
for news in self.hn.parse_news_list():
self.assertTrue(news['score'] is None or \
news['score'].isdigit())
def test_parse_comhead(self):
# test removed www
self.assertEqual(self.hn.parse_comhead('www.googlE.com'),
'google.com')
# test whole hostname
self.assertEqual(self.hn.parse_comhead('plus.googlE.com'),
'plus.google.com')
# test hostname with github user
self.assertEqual(self.hn.parse_comhead('www.github.com/polyrabbit'),
'github.com/polyrabbit')
self.assertEqual(self.hn.parse_comhead('github.com/'),
'github.com')