aboutsummaryrefslogtreecommitdiff
path: root/rpki/gui/cacheview/tests.py
diff options
context:
space:
mode:
authorMichael Elkins <melkins@tislabs.com>2016-04-21 21:23:25 +0000
committerMichael Elkins <melkins@tislabs.com>2016-04-21 21:23:25 +0000
commit40c34bb6427f634ee4c9fc4fe7539d7f993abc19 (patch)
tree879330015ac72897ec06de39eef4586933958d38 /rpki/gui/cacheview/tests.py
parente7129a3c7e5e7bfaf0bc63140200a3bb847446ac (diff)
Update the GUI to work with the new rcynicdb.
svn path=/branches/tk705/; revision=6365
Diffstat (limited to 'rpki/gui/cacheview/tests.py')
-rw-r--r--rpki/gui/cacheview/tests.py23
1 files changed, 0 insertions, 23 deletions
diff --git a/rpki/gui/cacheview/tests.py b/rpki/gui/cacheview/tests.py
deleted file mode 100644
index c2958c72..00000000
--- a/rpki/gui/cacheview/tests.py
+++ /dev/null
@@ -1,23 +0,0 @@
-"""
-This file demonstrates two different styles of tests (one doctest and one
-unittest). These will both pass when you run "manage.py test".
-
-Replace these 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.failUnlessEqual(1 + 1, 2)
-
-__test__ = {"doctest": """
-Another way to test that 1 + 1 is equal to 2.
-
->>> 1 + 1 == 2
-True
-"""}