Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

import os 

from nose import with_setup 

 

## SETUP AND TEARDOWN FIXTURE FUNCTIONS FOR THE ENTIRE MODULE 

def setUpModule(): 

    "set up test fixtures" 

    moduleDirectory = os.path.dirname(__file__) 

 

    # SETUP PATHS TO COMMONG DIRECTORIES FOR TEST DATA 

    global pathToInputDataDir, pathToOutputDir, pathToOutputDataDir 

    pathToInputDataDir = moduleDirectory+"/input/data/" 

    pathToOutputDir = moduleDirectory+"/output/" 

    pathToOutputDataDir = pathToOutputDir+"data/" 

 

    # SETUP THE TEST LOG FILE 

    global testlog 

    testlog = open(pathToOutputDir + "tests.log", 'w') 

 

    return None 

 

def tearDownModule(): 

    "tear down test fixtures" 

    # CLOSE THE TEST LOG FILE 

    testlog.close() 

    return None 

 

 

## SETUP AND TEARDOWN FIXTURE FUNCTIONS 

def setUpFunc(): 

    "set up the test fixtures" 

 

    return None 

 

def tearDownFunc(): 

    "tear down the test fixtures" 

 

    return None