Compare commits

...

1 Commits
main ... v6

Author SHA1 Message Date
FunctionsAPI
e70279e940 Automatic push from FunctionsAPI 2025-06-10 16:29:33 +00:00
3 changed files with 30 additions and 2 deletions

View File

@ -1,2 +1 @@
# c5625bb377904481b2f7616f2993751d
# python hello-world

27
main.py Normal file
View File

@ -0,0 +1,27 @@
def main():
extraordinarily_lengthy_input_string_for_wrapping_test = (
"This is a very long string designed to test text wrapping functionality in the application interface "
"to ensure that text is properly wrapped without truncation or overflow issues when displayed in UI components."
)
super_verbose_expected_wrapped_output_for_verification = (
"This is a very long string designed to test text wrapping functionality in the\n"
"application interface to ensure that text is properly wrapped without truncation\n"
"or overflow issues when displayed in UI components."
)
print("Testing text wrapping...")
print("Input:", extraordinarily_lengthy_input_string_for_wrapping_test)
print("Expected wrapped output:")
print(super_verbose_expected_wrapped_output_for_verification)
# Simulate checking wrapping (actual UI check would depend on application)
is_wrapped_correctly = (
len(extraordinarily_lengthy_input_string_for_wrapping_test) > 50 # Arbitrary line length
and "\n" in super_verbose_expected_wrapped_output_for_verification
)
return "Text wrapping test passed!" if is_wrapped_correctly else "Text wrapping test failed!"
if __name__ == "__main__":
result = main()
print(result)

2
requirements.txt Normal file
View File

@ -0,0 +1,2 @@
functions-framework==1.4.3
markupsafe==2.0.1