summaryrefslogtreecommitdiffstats
path: root/python/mozbuild/mozbuild/test/test_pythonutil.py
blob: 6ebb5cc46e275de68bc7e33fc4648fd6fe3920ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

import os

from mozunit import main

from mozbuild.pythonutil import iter_modules_in_path


def test_iter_modules_in_path():
    tests_path = os.path.normcase(os.path.dirname(__file__))
    paths = list(iter_modules_in_path(tests_path))
    assert set(paths) == set(
        [
            os.path.join(os.path.abspath(tests_path), "__init__.py"),
            os.path.join(os.path.abspath(tests_path), "test_pythonutil.py"),
        ]
    )


if __name__ == "__main__":
    main()