Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 319 Bytes

README.md

File metadata and controls

16 lines (10 loc) · 319 Bytes

Django Mongorunner

A testrunner for django using mongodb with mongoenngine.

Install

Simply specify mongorunner as your testrunner in settings.py: TEST_RUNNER = 'mongorunner.TestRunner'

Usage

from mongorunner import TestCase

class SimpleTest(TestCase):
    def test(self):
        pass