Add unit test for basic function calls (py3)

This commit is contained in:
Michael Hansen
2023-02-27 11:59:01 -08:00
parent 00d436f87d
commit 9f747e188c
6 changed files with 16 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,9 @@
import sys
import os
sys.stdout.write('Test\n')
sys.stdout.write(os.path.join('foo', 'bar'))
print('\n')
print(eval('4 * 13'))
print()

View File

@@ -0,0 +1,7 @@
import sys <EOL>
import os <EOL>
sys . stdout . write ( 'Test\n' ) <EOL>
sys . stdout . write ( os . path . join ( 'foo' , 'bar' ) ) <EOL>
print ( '\n' ) <EOL>
print ( eval ( '4 * 13' ) ) <EOL>
print ( ) <EOL>