Python django.test.LiveServerTestCase() Examples
The following are 2
code examples of django.test.LiveServerTestCase().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
django.test
, or try the search function
.
Example #1
Source File: tests.py From openstax-cms with GNU Affero General Public License v3.0 | 5 votes |
def setUp(self): super(WagtailPageTests, self).setUp() super(LiveServerTestCase, self).setUp()
Example #2
Source File: tests.py From openstax-cms with GNU Affero General Public License v3.0 | 5 votes |
def tearDown(self): super(WagtailPageTests, self).tearDown() super(LiveServerTestCase, self).tearDown()