https://github.com/bear/python-twitter
Raw File
Tip revision: d9ce8a5767911e96cbb6d0d894b91d58410e09b0 authored by AJ West on 02 September 2016, 21:11:51 UTC
Update the main README to direct readers to more information on Google App Engine.
Tip revision: d9ce8a5
test.py
import unittest

if __name__ == '__main__':
    testsuite = unittest.TestLoader().discover('.')
    unittest.TextTestRunner(verbosity=1).run(testsuite)
back to top