10 lines
347 B
Python
10 lines
347 B
Python
from functions.write_file import write_file
|
|
|
|
def test():
|
|
print(write_file("calculator", "lorem.txt", "wait, this isn't lorem ipsum"))
|
|
print(write_file("calculator", "pkg/morelorem.txt", "lorem ipsum dolor sit amet"))
|
|
print(write_file("calculator", "/tmp/temp.txt", "this should not be allowed"))
|
|
|
|
if __name__ == "__main__":
|
|
test()
|