2020-06-14 17:14:22 -04:00
|
|
|
import unittest
|
|
|
|
from django.test import TestCase
|
|
|
|
|
|
|
|
Class AddMedia(unittest.TestCase):
|
|
|
|
def test_add_movie(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def test_add_tvseries(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def test_add_tvseason(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def test_add_vgame(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def test_add_book(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def test_add_existing(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def test_add_duplicate(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def test_add_diff_isbn(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def test_add_diff_vgame_platform(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|