This commit is contained in:
godd0t
2023-05-10 09:02:59 +02:00
commit 8ff2ae26e7
38 changed files with 975 additions and 0 deletions

0
src/test_app/__init__.py Normal file
View File

3
src/test_app/admin.py Normal file
View File

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

6
src/test_app/apps.py Normal file
View File

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

View File

3
src/test_app/models.py Normal file
View File

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

3
src/test_app/tests.py Normal file
View File

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

5
src/test_app/urls.py Normal file
View File

@@ -0,0 +1,5 @@
from django.urls import path # noqa
urlpatterns = [
# ... other urls
]

3
src/test_app/views.py Normal file
View File

@@ -0,0 +1,3 @@
from django.shortcuts import render # noqa
# Create your views here.