skipping tests that were failing because of external dependency on Twitter

This commit is contained in:
cash 2014-01-11 15:45:45 -05:00
parent fc55791cbf
commit c449e3f8e1
4 changed files with 94 additions and 1 deletions

View file

@ -4,7 +4,11 @@ from .config import (
test_tweet_object, test_tweet_html
)
import unittest
try:
import unittest2 as unittest
except ImportError:
import unittest
import responses
import requests