Add app for lists, with deliberately failing unit test

This commit is contained in:
Ignacio 2024-10-23 12:50:06 -06:00
parent 49c79f3bbe
commit e373ec5d69
7 changed files with 21 additions and 0 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.

6
lists/tests.py Normal file
View File

@ -0,0 +1,6 @@
from django.test import TestCase
# Create your tests here.
class SmokeTest(TestCase):
def test_bad_maths(self):
self.assertEqual(1 + 1, 3)

3
lists/views.py Normal file
View File

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