chapter 2.3

This commit is contained in:
2025-08-04 17:35:26 +02:00
parent 3fb2ef23bf
commit 5f32644822
5 changed files with 122 additions and 0 deletions

16
tests.py Normal file
View File

@@ -0,0 +1,16 @@
from functions.get_file_content import get_file_content
def test():
result = get_file_content("calculator", "main.py")
print(result)
result = get_file_content("calculator", "pkg/calculator.py")
print(result)
result = get_file_content("calculator", "/bin/cat")
print(result)
if __name__ == "__main__":
test()