Just enough infrastructure to get tests to pass as standalone app
This commit is contained in:
parent
d3d8d5e46c
commit
ff49d5cba2
9 changed files with 307 additions and 5 deletions
|
@ -5,7 +5,7 @@ from django.db import migrations
|
|||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
atomic = False
|
||||
dependencies = [
|
||||
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
||||
('todo', '0005_auto_20180212_2325'),
|
||||
|
|
1
todo/templates/base.html
Normal file
1
todo/templates/base.html
Normal file
|
@ -0,0 +1 @@
|
|||
This file not actually used by django-todo - here to satisfy the test runner.
|
|
@ -5,6 +5,7 @@ from django.contrib.auth.models import Group
|
|||
from todo.models import Task, TaskList
|
||||
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
def todo_setup(django_user_model):
|
||||
# Two groups with different users, two sets of tasks.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue