summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/collections/collection_root_user/ansible_collections/testns/testcoll/plugins/module_utils/subpkg_with_init.py
blob: b48a717caeb7d744efb9d8dd9f1c1e880b052613 (plain)
1
2
3
4
5
6
7
8
9
10
11
# NB: this module should never be loaded, since we'll see the subpkg_with_init package dir first
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type


def thingtocall():
    raise Exception('this should never be called (loaded discrete module instead of package module)')


def anotherthingtocall():
    raise Exception('this should never be called (loaded discrete module instead of package module)')