diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2021-04-21 19:08:42 +0100 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2021-04-21 19:08:42 +0100 |
commit | bcdb3572fa260052d76b54961dea9a9381381311 (patch) | |
tree | bc4c8b84354fb881d1bd25c1fe797e6c2345fd5f /core/TESTS | |
parent | 18938c9fca5af4ed8e8fe97f101bd5a9870f2b5a (diff) | |
download | troggle-bcdb3572fa260052d76b54961dea9a9381381311.tar.gz troggle-bcdb3572fa260052d76b54961dea9a9381381311.tar.bz2 troggle-bcdb3572fa260052d76b54961dea9a9381381311.zip |
Add new per-module ToDo texts
Diffstat (limited to 'core/TESTS')
-rw-r--r-- | core/TESTS/tests.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/core/TESTS/tests.py b/core/TESTS/tests.py index 4d22596..d8143b5 100644 --- a/core/TESTS/tests.py +++ b/core/TESTS/tests.py @@ -1,4 +1,4 @@ -""" +''' We are using unittest for troggle. Note that the database has not been parsed from the source files when these tests are run, @@ -17,7 +17,12 @@ which rely on database resolution will fail unless a fixture has been set up for them. https://docs.djangoproject.com/en/3.0/topics/testing/tools/ -""" +''' + + +todo = '''ADD TESTS when we are redirecting /expofiles/ to a remote file-delivering site +''' + import unittest import re from django.test import TestCase, SimpleTestCase, Client |