Compare commits

...

3 Commits

8 changed files with 31 additions and 2 deletions

0
lists/__init__.py Normal file
View File

3
lists/admin.py Normal file
View File

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

6
lists/apps.py Normal file
View File

@ -0,0 +1,6 @@
from django.apps import AppConfig
class ListsConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'lists'

View File

3
lists/models.py Normal file
View File

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

11
lists/tests.py Normal file
View File

@ -0,0 +1,11 @@
from django.test import TestCase
from django.http import HttpRequest
from lists.views import home_page
# Create your tests here.
class HomePageTest(TestCase):
def test_home_page_returns_correct_html(self):
response = self.client.get("/")
self.assertContains(response, "<title>To-Do lists</title>")
self.assertContains(response, "<html>")
self.assertContains(response, "</html>")

6
lists/views.py Normal file
View File

@ -0,0 +1,6 @@
from django.shortcuts import render
from django.http import HttpResponse
# Create your views here.
def home_page(request):
return HttpResponse("<html><title>To-Do lists</title></html>")

View File

@ -14,9 +14,9 @@ Including another URLconf
1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path
from lists.views import home_page
urlpatterns = [
path('admin/', admin.site.urls),
path("", home_page, name="home"),
]