| Conditions | 2 |
| Total Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | # -*- coding: utf-8 -*- |
||
| 22 | def test_copy_and_replace(self): |
||
| 23 | mapping = get_wildcards('fixtures/wildcards.yaml') |
||
| 24 | copy_and_replace('fixtures/input.ini', 'fixtures/output.ini', mapping) |
||
| 25 | with open('fixtures/output.ini', "r") as in_file: |
||
| 26 | res = in_file.readlines() |
||
| 27 | self.assertIn('correct = True', res) |
||
| 28 | |||
| 34 |