aboutsummaryrefslogtreecommitdiff
path: root/setuptools/tests/test_depends.py
blob: bff1dfb19901b97e5846fe771cac5a8d1eec7a1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import sys

from setuptools import depends


class TestGetModuleConstant:

    def test_basic(self):
        """
        Invoke get_module_constant on a module in
        the test package.
        """
        mod_name = 'setuptools.tests.mod_with_constant'
        val = depends.get_module_constant(mod_name, 'value')
        assert val == 'three, sir!'
        assert 'setuptools.tests.mod_with_constant' not in sys.modules