update
[prawokultury.git] / events / tests.py
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.
4 #
5 """
6 This file demonstrates writing tests using the unittest module. These will pass
7 when you run "manage.py test".
8
9 Replace this with more appropriate tests for your application.
10 """
11
12 from django.test import TestCase
13
14
15 class SimpleTest(TestCase):
16     def test_basic_addition(self):
17         """
18         Tests that 1 + 1 always equals 2.
19         """
20         self.assertEqual(1 + 1, 2)