Functions files
Run Pytest with Allure and Coverage Reports / tests (push) Successful in 37s

This commit is contained in:
yasmine_tligui
2025-07-14 11:47:35 +02:00
parent b7741ee339
commit 47508f32fc
10 changed files with 716 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
def uppercase(s):
if s is None:
raise TypeError("Input cannot be None")
return s.upper()
def reverse(s):
return s[::-1]