fix migration (only pl/en for translatable fields)
[django-migdal.git] / migdal / tests.py
1 # -*- coding: utf-8 -*-
2 """
3 This file demonstrates writing tests using the unittest module. These will pass
4 when you run "manage.py test".
5
6 Replace this with more appropriate tests for your application.
7 """
8
9 from django.test import TestCase
10
11
12 class SimpleTest(TestCase):
13     def test_basic_addition(self):
14         """
15         Tests that 1 + 1 always equals 2.
16         """
17         self.assertEqual(1 + 1, 2)