1 # -*- coding: utf-8 -*-
2 # This file is part of PrawoKultury, licensed under GNU Affero GPLv3 or later.
3 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
6 This file demonstrates writing tests using the unittest module. These will pass
7 when you run "manage.py test".
9 Replace this with more appropriate tests for your application.
12 from django.test import TestCase
15 class SimpleTest(TestCase):
16 def test_basic_addition(self):
18 Tests that 1 + 1 always equals 2.
20 self.assertEqual(1 + 1, 2)