test_utils.py 685 B

12345678910111213141516171819
  1. from django.test import TestCase
  2. from jet.tests.models import TestModel
  3. from jet.utils import JsonResponse, get_model_instance_label
  4. class UtilsTestCase(TestCase):
  5. def test_json_response(self):
  6. response = JsonResponse({'str': 'string', 'int': 1})
  7. self.assertEqual(response.content, '{"int": 1, "str": "string"}')
  8. self.assertEqual(response.get('Content-Type'), 'application/json')
  9. def test_get_model_instance_label(self):
  10. field1 = 'value'
  11. field2 = 2
  12. pinned_application = TestModel.objects.create(field1=field1, field2=field2)
  13. self.assertEqual(get_model_instance_label(pinned_application), '%s%d' % (field1, field2))