19 lines
265 B
Python
19 lines
265 B
Python
import unittest
|
|
from django.test import TestCase
|
|
|
|
Class ApiTests(unittest.TestCase):
|
|
def test_imdb:
|
|
pass
|
|
|
|
def test_tmdb:
|
|
pass
|
|
|
|
def test_metacritic:
|
|
pass
|
|
|
|
def test_tgdb:
|
|
pass
|
|
|
|
def test_rottentomatoes:
|
|
pass
|