Welcome to mirror list, hosted at ThFree Co, Russian Federation.

os_test.py « compat « tests « certbot - github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e4928e4fbcaace88fad6bb8f11dbb332b74407cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
"""Unit test for os module."""
import unittest

from certbot.compat import os


class OsTest(unittest.TestCase):
    """Unit tests for os module."""
    def test_forbidden_methods(self):
        # Checks for os module
        for method in ['chmod', 'chown', 'open', 'mkdir',
                       'makedirs', 'rename', 'replace', 'access']:
            self.assertRaises(RuntimeError, getattr(os, method))
        # Checks for os.path module
        for method in ['realpath']:
            self.assertRaises(RuntimeError, getattr(os.path, method))


if __name__ == "__main__":
    unittest.main()  # pragma: no cover