6 lines
121 B
Python
6 lines
121 B
Python
from unittest import TestCase
|
|
|
|
|
|
class OmdbTestCase(TestCase):
|
|
def test_movie_db(self):
|
|
self.assertTrue(True)
|