pocketlang/test/import.pk
Thakee Nathees 3e444ad196 assertion function and tests impl.
- main moved to cli
2021-05-11 18:05:09 +05:30

13 lines
293 B
Plaintext

## Testing import statement
import os
import os, path
import os as o, path as p
from os import clock
from os import clock as c
from path import abspath, curdir
from path import abspath as ap, curdir as cd
print("-------------------")
print(" IMPORT TESTS DONE ")
print("-------------------")