예제 #1
0
파일: test.py 프로젝트: cedeon/shell_master
 def test_ignore_check_works(self):
     lp.get_args()
     self.assertEqual(lp.AppOptions.ignore, True, "Ignore is False")
예제 #2
0
파일: test.py 프로젝트: cedeon/shell_master
 def test_path_is_always_absolute(self):
     lp.get_args()
     msg = "Filename is "+ lp.AppOptions.fn + " :: "
     self.assertEqual(lp.AppOptions.fn[:1], '/')
     print(msg)