From 0c9a2d2c5d21e9c73fefdf4488b5673745cf6459 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sat, 28 Jul 2012 03:19:06 -0400 Subject: [PATCH] Remove unused converter test file --- apps/converter/tests.py | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 apps/converter/tests.py diff --git a/apps/converter/tests.py b/apps/converter/tests.py deleted file mode 100644 index 3b31148896..0000000000 --- a/apps/converter/tests.py +++ /dev/null @@ -1,22 +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 -"""}