mirror of
https://github.com/lucaspalomodevelop/eventcally.git
synced 2026-03-13 00:07:22 +00:00
11 lines
305 B
Python
11 lines
305 B
Python
class SubTests:
|
|
def call_sub_tests(self):
|
|
sub_tests = [
|
|
getattr(self, method_name)
|
|
for method_name in dir(self)
|
|
if callable(getattr(self, method_name)) and method_name.startswith("_test")
|
|
]
|
|
|
|
for sub_test in sub_tests:
|
|
sub_test()
|