35
36
37
38
39
40
41
42
43
44
45
46
| def inner_props(pmd):
assert pmd["type"] == "pyz"
assert pmd["category"] == "complex"
assert pmd["title"] == "pyz module"
assert pmd["config"][0]["name"] == "relation"
assert pmd["state"] == "alpha"
def tearDown(reset):
pass
# pass#pluginconf.plugin_base = [".", "test", os.path.dirname(__file__), "."]
# #pluginconf.module_base = "all_plugin_meta"
# sys.path.pop(0)
|
>
>
>
>
| 35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
| def inner_props(pmd):
assert pmd["type"] == "pyz"
assert pmd["category"] == "complex"
assert pmd["title"] == "pyz module"
assert pmd["config"][0]["name"] == "relation"
assert pmd["state"] == "alpha"
def get_data_wihin_pyz_module(pmd):
import get_data
assert get_data.data == "🞂find_me🞀"
def tearDown(reset):
pass
# pass#pluginconf.plugin_base = [".", "test", os.path.dirname(__file__), "."]
# #pluginconf.module_base = "all_plugin_meta"
# sys.path.pop(0)
|