added comments throughout

This commit is contained in:
PatchOfScotland
2023-01-31 14:36:38 +01:00
parent 31d06af5bf
commit b95042c5ca
10 changed files with 545 additions and 72 deletions

View File

@ -1,4 +1,6 @@
#! /bin/bash
# A script to run all tests. This will automatically move to the tests
# directory and call all other files as pytest scripts
# Need to more to local dir to run tests
starting_working_dir=$(pwd)

View File

@ -200,7 +200,7 @@ class MeowTests(unittest.TestCase):
FullTestHandler()
def testBaseConductor(self)->None:
with self.assertRaises(NotImplementedError):
with self.assertRaises(TypeError):
BaseConductor()
class TestConductor(BaseConductor):