Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

"""Tests for certbot.plugins.dns_common_lexicon.""" 

 

import unittest 

 

import mock 

 

from certbot.plugins import dns_common_lexicon 

from certbot.plugins import dns_test_common_lexicon 

 

 

class LexiconClientTest(unittest.TestCase, dns_test_common_lexicon.BaseLexiconClientTest): 

 

class _FakeLexiconClient(dns_common_lexicon.LexiconClient): 

pass 

 

def setUp(self): 

super(LexiconClientTest, self).setUp() 

 

self.client = LexiconClientTest._FakeLexiconClient() 

self.provider_mock = mock.MagicMock() 

 

self.client.provider = self.provider_mock 

 

 

 

if __name__ == "__main__": 

unittest.main() # pragma: no cover