diff options
author | Filipp Lepalaan <f@230.to> | 2013-11-08 09:31:01 +0200 |
---|---|---|
committer | Filipp Lepalaan <f@230.to> | 2013-11-08 09:31:01 +0200 |
commit | f077badf3163fc36c111dc45fe8d7d6f57d8712a (patch) | |
tree | f2b83bdc836f8a8035badb0d401ee0ea86eafa55 /apps/troubleshooting/tests.py | |
parent | b9fc1060406a433473faa70c236ba3e177640d26 (diff) | |
download | motor.old-f077badf3163fc36c111dc45fe8d7d6f57d8712a.tar.gz motor.old-f077badf3163fc36c111dc45fe8d7d6f57d8712a.tar.bz2 motor.old-f077badf3163fc36c111dc45fe8d7d6f57d8712a.zip |
Merged motor and checkin
Diffstat (limited to 'apps/troubleshooting/tests.py')
-rw-r--r-- | apps/troubleshooting/tests.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/apps/troubleshooting/tests.py b/apps/troubleshooting/tests.py new file mode 100644 index 0000000..501deb7 --- /dev/null +++ b/apps/troubleshooting/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) |