Upgrade test runner to derive from DiscoveryRunner.

This commit is contained in:
Jonathan Piacenti 2015-02-22 17:48:24 -06:00 committed by Griatch
parent f075bcf297
commit c03bac5efd
10 changed files with 67 additions and 97 deletions

View file

@ -13,15 +13,17 @@ main test suite started with
"""
import re
from django.conf import settings
from mock import Mock
from evennia.commands.default.cmdset_character import CharacterCmdSet
from evennia.tests.resources import EvenniaTest
from evennia.commands.default.cmdset_character import CharacterCmdSet
from evennia.utils.test_resources import EvenniaTest
from evennia.commands.default import help, general, system, admin, player, building, batchprocess, comms
from evennia.utils import ansi
from evennia.server.sessionhandler import SESSIONS
# set up signal here since we are not starting the server
_RE = re.compile(r"^\+|-+\+|\+-+|--*|\|", re.MULTILINE)