customBashShell / src / cd_test.py
cd_test.py
Raw
#!/usr/bin/python
#
# cd: tests the cd built-in command
# 
import os
import sys, imp, atexit, signal, time, threading
from testutils import *

console = setup_tests()
absPath = os.getcwd()
currentWDir = os.path.basename(absPath)


expect_exact(currentWDir, "Failed test")
test_success()