Browse Source

added tests for both non-confirming notes as well as empty notes in existing monitors

pull/737/head
Sham 5 years ago
parent
commit
7f3aafe6a4
1 changed files with 12 additions and 0 deletions
  1. +12
    -0
      tests/test_octodns_provider_ns1.py

+ 12
- 0
tests/test_octodns_provider_ns1.py View File

@ -659,6 +659,18 @@ class TestNs1ProviderDynamic(TestCase):
},
'four': monitor_four,
'five': monitor_five,
'six': {
'config': {
'host': '10.10.10.10',
},
'notes': 'non-conforming notes',
},
'seven': {
'config': {
'host': '11.11.11.11',
},
'notes': None,
},
}
# Would match, but won't get there b/c it's not dynamic


Loading…
Cancel
Save