master^2
Daniel Martinez 2020-06-16 17:32:37 -04:00
parent 2c62a267f0
commit 1a90ebe583
12 changed files with 1 additions and 25 deletions

View File

View File

@ -1,3 +0,0 @@
from django.contrib import admin
# Register your models here.

View File

@ -1,5 +0,0 @@
from django.apps import AppConfig
class ListmediaConfig(AppConfig):
name = 'listmedia'

View File

@ -1,3 +0,0 @@
from django.db import models
# Create your models here.

View File

@ -1,3 +0,0 @@
from django.test import TestCase
# Create your tests here.

View File

@ -1,6 +0,0 @@
from django.urls import path
from . import views
urlpatterns = [
path('', views.index, name="index"),
]

View File

@ -1,4 +0,0 @@
from django.http import HttpResponse
def index(request):
return HttpResponse("Hello ur at your media page")

View File

@ -1,7 +1,7 @@
import unittest
from django.test import TestCase
Class AddMedia(unittest.TestCase):
class AddMedia(TestCase):
def test_add_movie(self):
pass