Merge pull request #325 from zrax/test_calls

Add unit test for basic function calls (py3)
This commit is contained in:
Michael Hansen
2023-02-27 12:04:36 -08:00
committed by GitHub
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>