From c31089fd0f8b06c312e546516dac955e52efa57f Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Sat, 10 Jul 2021 12:10:39 +0200 Subject: [PATCH] Add test skeleton --- manuels/tests/__init__.py | 0 manuels/tests/test_inscription.py | 7 +++++++ 2 files changed, 7 insertions(+) create mode 100644 manuels/tests/__init__.py create mode 100644 manuels/tests/test_inscription.py diff --git a/manuels/tests/__init__.py b/manuels/tests/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/manuels/tests/test_inscription.py b/manuels/tests/test_inscription.py new file mode 100644 index 0000000..31359c2 --- /dev/null +++ b/manuels/tests/test_inscription.py @@ -0,0 +1,7 @@ +from django.test import TestCase + + +class MyTestCase(TestCase): + def test_something(self): + self.assertEqual(True, False) +