diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_write_make_conf.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_write_make_conf.py b/tests/test_write_make_conf.py index 3dedd93..fb84978 100644 --- a/tests/test_write_make_conf.py +++ b/tests/test_write_make_conf.py @@ -23,6 +23,7 @@ class WriteMakeConfTestCase(unittest.TestCase): ('\n{}="foo \\\nbar"\n'.format(var), '\n{}\n'.format(mirror_string)), ('\n\n{}="foo \\\nbar"\n'.format(var), '\n\n{}\n'.format(mirror_string)), ('\n\n{}="foo \\\nbar"\na="b"\n'.format(var), '\n\na="b"\n{}\n'.format(mirror_string)), + ('', '{}\n'.format(mirror_string)), ) for make_conf, expected_result in cases: |