ponyapi/client/python/test.py

31 lines
658 B
Python
Raw Normal View History

2015-08-13 01:16:33 +00:00
import ponyapi
import unittest
class TestPonyAPI(unittest.TestCase):
def test_newest(self):
2016-01-16 16:15:54 +00:00
try:
ponyapi.newest()
except:
print "probably on hiatus"
2015-08-13 01:16:33 +00:00
def test_all_episodes(self):
assert len(ponyapi.all_episodes()) > 0
def test_last_aired(self):
ponyapi.last_aired()
def test_random(self):
ponyapi.random()
def test_get_season(self):
assert len(ponyapi.get_season(4)) > 0
def test_get_episode(self):
ponyapi.get_episode(2, 14)
def test_searcn(self):
assert len(ponyapi.search("pony")) > 0
if __name__ == '__main__':
unittest.main()