Merge branch 'master' of https://code.keybored.co/keybored-co/keymedia
commit
16bf852714
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,3 +0,0 @@
|
||||||
from django.contrib import admin
|
|
||||||
|
|
||||||
# Register your models here.
|
|
|
@ -1,5 +0,0 @@
|
||||||
from django.apps import AppConfig
|
|
||||||
|
|
||||||
|
|
||||||
class ListmediaConfig(AppConfig):
|
|
||||||
name = 'listmedia'
|
|
|
@ -1,3 +0,0 @@
|
||||||
from django.db import models
|
|
||||||
|
|
||||||
# Create your models here.
|
|
|
@ -1,3 +0,0 @@
|
||||||
from django.test import TestCase
|
|
||||||
|
|
||||||
# Create your tests here.
|
|
|
@ -1,6 +0,0 @@
|
||||||
from django.urls import path
|
|
||||||
from . import views
|
|
||||||
|
|
||||||
urlpatterns = [
|
|
||||||
path('', views.index, name="index"),
|
|
||||||
]
|
|
|
@ -1,4 +0,0 @@
|
||||||
from django.http import HttpResponse
|
|
||||||
|
|
||||||
def index(request):
|
|
||||||
return HttpResponse("Hello ur at your media page")
|
|
|
@ -1,7 +1,7 @@
|
||||||
import unittest
|
import unittest
|
||||||
from django.test import TestCase
|
from django.test import TestCase
|
||||||
|
|
||||||
Class AddMediaTests(unittest.TestCase):
|
Class AddMediaTests(TestCase):
|
||||||
def test_add_movie(self):
|
def test_add_movie(self):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue