File: testme.py

package info (click to toggle)
cde 0.1%2Bgit9-g551e54d-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 11,176 kB
  • sloc: ansic: 75,885; sh: 4,282; python: 1,006; perl: 438; makefile: 298; lisp: 44; java: 5
file content (10 lines) | stat: -rw-r--r-- 416 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
import sys
sys.path.insert(0, '..')
from cde_test_common import *

def checker_func():
  assert os.path.isfile(CDE_ROOT_DIR + '/home/pgbovine/CDE/tests/test_file.txt')
  assert os.path.islink(CDE_ROOT_DIR + '/home/pgbovine/CDE/tests/test_file.link')
  assert os.readlink(CDE_ROOT_DIR + '/home/pgbovine/CDE/tests/test_file.link') == 'test_file.txt'

generic_test_runner(["python", "relative_paths.py"], checker_func)