Translate relative path to full path in temp dir. f.full_path('foo/bar.txt') -> /tmp/asdfasd/foo/bar.txt
(self, filename)
| 232 | return full_path |
| 233 | |
| 234 | def full_path(self, filename): |
| 235 | """Translate relative path to full path in temp dir. |
| 236 | f.full_path('foo/bar.txt') -> /tmp/asdfasd/foo/bar.txt |
| 237 | """ |
| 238 | return os.path.join(self.rootdir, filename) |
| 239 | |
| 240 | |
| 241 | class RecordingOSUtils(OSUtils): |
no outgoing calls