Simplify settings loading a bit. Remove the things which haven't been working for...
[redakcja.git] / src / dvcs / tests / tests.py
index 5c7a475..06160ca 100644 (file)
@@ -2,7 +2,6 @@ from nose.tools import *
 from django.test import TestCase
 from .models import ADocument
 
-
 class DocumentModelTests(TestCase):
 
     def assertTextEqual(self, given, expected):
@@ -11,6 +10,7 @@ class DocumentModelTests(TestCase):
         )
 
     def test_empty_file(self):
+        assert False
         doc = ADocument.objects.create()
         self.assertTextEqual(doc.materialize(), u"")