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

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

import os 

from nose import with_setup 

import nose 

 

## 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" 

 

    global fitsFilePath 

    fitsFilePath =  pathToInputDataDir + "LSQ12dwl_20120808_i705_56462_1_fr.fits" 

    testlog.write(fitsFilePath) 

 

    return None 

 

def tearDownFunc(): 

    "tear down the test fixtures" 

 

    return None 

 

 

@with_setup(setUpFunc, tearDownFunc) 

def test_convert_fits_header_to_dictionary(): 

    "a function to test convert_fits_header_to_dictionary" 

    # testlog.write(fitsFilePath) 

    nose.tools.assert_equal(1, 1)