This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import unittest | |
from django.conf import settings | |
from django.db.models import get_app, get_apps | |
from django.test.utils import setup_test_environment, teardown_test_environment | |
from django.test.simple import build_suite | |
from django.db.backends.creation import TEST_DATABASE_PREFIX | |
import couchdb | |
def create_test_couchdb(): |
NewerOlder