def getNewsSummariesForUserWithKeyword(self, user_id, page_num, keyword): return operations.getNewsSummariesForUserWithKeyword(user_id, page_num, keyword)
def test_getNewsSummariesForUserWithKeyword(): news = operations.getNewsSummariesForUserWithKeyword( 'test', 1, "trump lawyer") # with %20 in reality assert len(news) > 0 print news