diff options
author | Étienne Loks <etienne.loks@proxience.com> | 2014-12-18 08:37:01 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@proxience.com> | 2014-12-18 08:37:01 +0100 |
commit | c91c8934fb31f9a2207f4a6c0bc5ea0ddae9b6af (patch) | |
tree | 7318917802de9bc82b3b9fc2389cbe53a80fba53 /archaeological_files_pdl/tests.py | |
parent | 99a854f87ce43666372fdff13f22141f39dee467 (diff) | |
download | Ishtar-c91c8934fb31f9a2207f4a6c0bc5ea0ddae9b6af.tar.bz2 Ishtar-c91c8934fb31f9a2207f4a6c0bc5ea0ddae9b6af.zip |
First work for an alternate UI for archaeological files (refs #2175)
Diffstat (limited to 'archaeological_files_pdl/tests.py')
-rw-r--r-- | archaeological_files_pdl/tests.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/archaeological_files_pdl/tests.py b/archaeological_files_pdl/tests.py new file mode 100644 index 000000000..501deb776 --- /dev/null +++ b/archaeological_files_pdl/tests.py @@ -0,0 +1,16 @@ +""" +This file demonstrates writing tests using the unittest module. These will pass +when you run "manage.py test". + +Replace this with more appropriate tests for your application. +""" + +from django.test import TestCase + + +class SimpleTest(TestCase): + def test_basic_addition(self): + """ + Tests that 1 + 1 always equals 2. + """ + self.assertEqual(1 + 1, 2) |