blob: 4128333cf234f2f19689ce47566e56f140901a3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
  | 
"""Tests for the djangorestframework package setup."""
from django.test import TestCase
import djangorestframework
class TestVersion(TestCase): 
    """Simple sanity test to check the VERSION exists"""
    def test_version(self):
        """Ensure the VERSION exists."""
        djangorestframework.VERSION
  |