2 This file demonstrates writing tests using the unittest module. These will pass
3 when you run "manage.py test".
5 Replace this with more appropriate tests for your application.
8 from django.test import TestCase
10 from plugins.lists.simplelist import SimpleList
12 class PluginTest(TestCase):
15 Tests that 1 + 1 always equals 2.
17 print 'test_basic is broken'
19 sl = SimpleList (visible=True)
20 print 'rendering', sl.render()
21 self.assertEqual(1 + 1, 2)