33 lines
530 B
Python
33 lines
530 B
Python
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
|
|
|
|
|