pocketlang/tests/modules/path.pk
Thakee Nathees d5b4b566e4 json library added
- cJSON library was added to thirdparty for json module
- json module added and json.parse() function implemented
- thirdparty library sources are directly imported
- io.readfile() function added
- less than function fix (wasn't returning boolean)
- min, max functions added
- map check values equal implemented
2022-06-01 01:49:39 +05:30

9 lines
172 B
Plaintext

import path
THIS_PATH = path.dirname(__file__)
assert('path.pk' in path.listdir(THIS_PATH))
# If we got here, that means all test were passed.
print('All TESTS PASSED')