From c01c030ee60c718ecbe629a3f2557e7924ba4159 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 18 Jan 2012 16:34:59 -0400 Subject: [PATCH] Remove test --- apps/folders/tests.py | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 apps/folders/tests.py diff --git a/apps/folders/tests.py b/apps/folders/tests.py deleted file mode 100644 index 3b31148896..0000000000 --- a/apps/folders/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 -"""}