Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
e3rd committed Sep 25, 2024
1 parent 5b08309 commit 714942a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,19 @@

class TestAbstract(TestCase):
def setUp(self):
print("28: Set up", self._testMethodName) # TODO
global SYS_ARGV
SYS_ARGV = sys.argv
self.sys()

def tearDown(self):
global SYS_ARGV
sys.argv = SYS_ARGV
print("28: Teared down", self._testMethodName) # TODO

@classmethod
def sys(cls, *args):
print("38: Modifiying sys", *args) # TODO
sys.argv = ["running-tests", *args]


Expand Down

0 comments on commit 714942a

Please sign in to comment.