diff options
author | Primal Pappachan | 2012-02-20 10:31:00 +0530 |
---|---|---|
committer | Primal Pappachan | 2012-02-20 10:31:00 +0530 |
commit | eca126940208efd61576589f97700a9031a04050 (patch) | |
tree | d58025adc199f53c30a9f3388bdc51d240fa3707 /profiler/tests.py | |
parent | 920b04b11c5910a4dd33beba56a6130341d180db (diff) | |
download | aloha-eca126940208efd61576589f97700a9031a04050.tar.gz aloha-eca126940208efd61576589f97700a9031a04050.tar.bz2 aloha-eca126940208efd61576589f97700a9031a04050.zip |
added the profiler app and edited allotter models
Diffstat (limited to 'profiler/tests.py')
-rw-r--r-- | profiler/tests.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/profiler/tests.py b/profiler/tests.py new file mode 100644 index 0000000..501deb7 --- /dev/null +++ b/profiler/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) |