evennia / evennia

Python MUD/MUX/MUSH/MU* development system

Home Page:http://www.evennia.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[Documentation] Beginner Tutorial Utilities Unit Testing Bug

iLPdev opened this issue · comments

Existing page / new

Lesson 1.4

BaseEvenniaTest will use the default evennia typeclasses rather than EvAdventure's

Documentation issue

from evennia.utils.test_resources import BaseEvenniaTest 

...

class TestUtils(BaseEvenniaTest):

Suggested change

from evennia.utils.test_resources import EvenniaTest 

...

class TestUtils(EvenniaTest):

Resolved in 255655d