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

Merge branch 'master' of https://github.com/github/octodns into feature/cloudflare-auth-bearer

This commit is contained in:
Mark Mercado
2020-02-15 12:20:19 -05:00
3 changed files with 20 additions and 9 deletions

View File

@@ -38,7 +38,13 @@ class TestDnsimpleProvider(TestCase):
break
def test_populate(self):
# Sandbox
provider = DnsimpleProvider('test', 'token', 42, 'true')
self.assertTrue('sandbox' in provider._client.base)
provider = DnsimpleProvider('test', 'token', 42)
self.assertFalse('sandbox' in provider._client.base)
# Bad auth
with requests_mock() as mock: