TestShell: Return self from setup()

This allows user to chain setup() to the initializer. test-shell.md code
examples have been updated to reflect this.
This commit is contained in:
James Chiang
2019-11-05 09:24:55 +01:00
parent a8dea45524
commit 2493770e36
2 changed files with 3 additions and 4 deletions

View File

@@ -42,6 +42,7 @@ class TestShell:
super().setup()
self.running = True
return self
def shutdown(self):
if not self.running: