File: dns_common_lexicon_test.py

package info (click to toggle)
python-certbot 0.31.0-1%2Bdeb10u1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,152 kB
  • sloc: python: 17,551; makefile: 171; sh: 31
file content (27 lines) | stat: -rw-r--r-- 651 bytes parent folder | download | duplicates (2)
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