Use unittest method to skip test
authorHarmon <Harmon758@gmail.com>
Wed, 16 Oct 2019 16:05:46 +0000 (11:05 -0500)
committerHarmon <Harmon758@gmail.com>
Wed, 16 Oct 2019 16:06:16 +0000 (11:06 -0500)
Instead of nose

tests/test_api.py

index 05d44a442c6301bc91b15a9d8e31e65b52b38450..72a4c0e10c48f182fa1500a9798d003862112ae6 100644 (file)
@@ -5,8 +5,6 @@ import time
 import unittest
 from ast import literal_eval
 
-from nose import SkipTest
-
 from .config import tape, TweepyTestCase, use_replay, username
 from tweepy import API, FileCache, Friendship, MemoryCache
 from tweepy.parsers import Parser
@@ -74,8 +72,7 @@ class TweepyAPITests(TweepyTestCase):
         self.api.retweets_of_me()
 
     def testretweet(self):
-        # TODO(josh): Need a way to get random tweets to retweet.
-        raise SkipTest()
+        self.skipTest('Missing method to retrieve random Tweet to Retweet')
 
     @tape.use_cassette('testretweets.json')
     def testretweets(self):