Tests: world test base class (#1116)

* world test base class

* game not instance property

* I would have guessed that this only collected 1.

* game property

* move SoE tests into worlds

* don't force auto world setup
This commit is contained in:
Doug Hoskisson
2022-10-18 09:54:41 -07:00
committed by GitHub
parent 49ae79e5ce
commit f12b73f487
8 changed files with 39 additions and 15 deletions

View File

@@ -78,6 +78,9 @@ class AssembleOptions(abc.ABCMeta):
return super(AssembleOptions, mcs).__new__(mcs, name, bases, attrs)
@abc.abstractclassmethod
def from_any(cls, value: typing.Any) -> "Option[typing.Any]": ...
T = typing.TypeVar('T')