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