예제 #1
0
파일: shextest.py 프로젝트: ijstokes/shex
 def bad_c(self):
     lines = shex.c("la")
     assert('command not found' in lines[0])
예제 #2
0
파일: shextest.py 프로젝트: ijstokes/shex
 def test_c(self):
     list = shex.c("ls")
     assert(list==os.listdir("."))