()
| 40 | |
| 41 | @dec.skip_if_not_win32 |
| 42 | def test_full_path_win32(): |
| 43 | spath = 'c:\\foo\\bar.py' |
| 44 | result = tt.full_path(spath,['a.txt','b.txt']) |
| 45 | nt.assert_equal(result, ['c:\\foo\\a.txt', 'c:\\foo\\b.txt']) |
| 46 | spath = 'c:\\foo' |
| 47 | result = tt.full_path(spath,['a.txt','b.txt']) |
| 48 | nt.assert_equal(result, ['c:\\a.txt', 'c:\\b.txt']) |
| 49 | result = tt.full_path(spath,'a.txt') |
| 50 | nt.assert_equal(result, ['c:\\a.txt']) |
| 51 | |
| 52 | |
| 53 | def test_parser(): |
nothing calls this directly
no outgoing calls
no test coverage detected