()
| 28 | |
| 29 | @dec.skip_win32 |
| 30 | def test_full_path_posix(): |
| 31 | spath = '/foo/bar.py' |
| 32 | result = tt.full_path(spath,['a.txt','b.txt']) |
| 33 | nt.assert_equal(result, ['/foo/a.txt', '/foo/b.txt']) |
| 34 | spath = '/foo' |
| 35 | result = tt.full_path(spath,['a.txt','b.txt']) |
| 36 | nt.assert_equal(result, ['/a.txt', '/b.txt']) |
| 37 | result = tt.full_path(spath,'a.txt') |
| 38 | nt.assert_equal(result, ['/a.txt']) |
| 39 | |
| 40 | |
| 41 | @dec.skip_if_not_win32 |
nothing calls this directly
no outgoing calls
no test coverage detected