From 5d022d73965da31bf41965f4aca286a677a3c6e1 Mon Sep 17 00:00:00 2001 From: Daniel Martinez Date: Mon, 15 Jun 2020 23:04:10 -0400 Subject: [PATCH 1/2] api test structure --- tests/test_apis.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/tests/test_apis.py b/tests/test_apis.py index e69de29..c8d527c 100644 --- a/tests/test_apis.py +++ b/tests/test_apis.py @@ -0,0 +1,18 @@ +import unittest +from django.test import TestCase + +Class AddMedia(unittest.TestCase): + def test_imdb: + pass + + def test_tmdb: + pass + + def test_metacritic: + pass + + def test_tgdb: + pass + + def test_rottentomatoes: + pass From ce442f9d349581e69015016a31782b8e6ea8d405 Mon Sep 17 00:00:00 2001 From: Daniel Martinez Date: Tue, 16 Jun 2020 15:42:28 -0400 Subject: [PATCH 2/2] fix test class titles --- tests/test_apis.py | 2 +- tests/test_managemedia.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_apis.py b/tests/test_apis.py index c8d527c..7381756 100644 --- a/tests/test_apis.py +++ b/tests/test_apis.py @@ -1,7 +1,7 @@ import unittest from django.test import TestCase -Class AddMedia(unittest.TestCase): +Class ApiTests(unittest.TestCase): def test_imdb: pass diff --git a/tests/test_managemedia.py b/tests/test_managemedia.py index 9004386..6b12b19 100644 --- a/tests/test_managemedia.py +++ b/tests/test_managemedia.py @@ -1,7 +1,7 @@ import unittest from django.test import TestCase -Class AddMedia(unittest.TestCase): +Class AddMediaTests(unittest.TestCase): def test_add_movie(self): pass