Package madrona :: Package bookmarks :: Module tests
[hide private]

Source Code for Module madrona.bookmarks.tests

 1  from django.test import TestCase 
 2   
3 -class BookmarkTest(TestCase):
4 - def test_unauth(self):
5 # POST to url 6 self.assertEqual(1 + 1, 2)
7
8 - def test_unauth_limit(self):
9 # Multiple posts per URL 10 self.assertEqual(1 + 1, 2)
11
12 - def test_create_feature(self):
13 self.assertEqual(1 + 1, 2)
14
15 - def test_view(self):
16 self.assertEqual(1 + 1, 2)
17