1
0
mirror of https://github.com/github/octodns.git synced 2024-05-11 05:55:00 +00:00

Remove the rest of the . ending files, clean up code and tests for better coverage

This commit is contained in:
Ross McFarland
2021-01-28 13:24:35 -08:00
parent c06dd6f846
commit 4ce2563d2e
32 changed files with 30 additions and 23 deletions

View File

@@ -46,10 +46,10 @@ class TestAxfrSource(TestCase):
class TestZoneFileSource(TestCase):
source = ZoneFileSource('test', './tests/zones', file_extension='tst')
source = ZoneFileSource('test', './tests/zones', file_extension='.tst')
def test_zonefiles_with_extension(self):
source = ZoneFileSource('test', './tests/zones', 'extension')
source = ZoneFileSource('test', './tests/zones', '.extension')
# Load zonefiles with a specified file extension
valid = Zone('ext.unit.tests.', [])
source.populate(valid)