mirror of
https://github.com/certbot/certbot.git
synced 2026-01-26 07:41:33 +03:00
* Move acme tests to tests/ directory outside of acme module * Fix call to messages_test in client_test * Move test_util.py and testdata/ into tests/ * Update manifest to package tests * Exclude pycache and .py[cod]
17 lines
456 B
Python
17 lines
456 B
Python
"""Tests for acme.util."""
|
|
import unittest
|
|
|
|
|
|
class MapKeysTest(unittest.TestCase):
|
|
"""Tests for acme.util.map_keys."""
|
|
|
|
def test_it(self):
|
|
from acme.util import map_keys
|
|
self.assertEqual({'a': 'b', 'c': 'd'},
|
|
map_keys({'a': 'b', 'c': 'd'}, lambda key: key))
|
|
self.assertEqual({2: 2, 4: 4}, map_keys({1: 2, 3: 4}, lambda x: x + 1))
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main() # pragma: no cover
|