blob: d18128f7e6c662b6f8e99bba6bc4f82bbc2df6eb (
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
|