Conditions | 4 |
Total Lines | 10 |
Code Lines | 9 |
Lines | 10 |
Ratio | 100 % |
Changes | 0 |
1 | import os |
||
9 | @classmethod |
||
10 | def setUpClass(cls): |
||
11 | cls.data = 'dev.hpadesign.com beta.hpadesign.com dev.projects.hpadesign.com projects.hpadesign.com' |
||
12 | cls.data += 'beta.projects.hpadesign.com staging.projects.hpadesign.com staging.hpadesign.com' |
||
13 | cls.data = cls.data.split(' ') |
||
14 | |||
15 | for f in os.listdir(os.path.dirname(__file__)): |
||
16 | if f.startswith('test_dump') and f.endswith('.txt'): |
||
17 | print('Removing: `{0}`'.format(f)) |
||
18 | os.remove(f) |
||
19 | |||
33 |