summaryrefslogtreecommitdiff
path: root/tests/utils_tests/test_module/another_bad_module.py
blob: 769bb2b246f69b3899a041ffb4a938b6162e9908 (plain)
1
2
3
4
5
6
7
8
9
10
11
from . import site

content = "Another Bad Module"

site._registry.update(
    {
        "foo": "bar",
    }
)

raise Exception("Some random exception.")