We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1bdee3 commit 37768bfCopy full SHA for 37768bf
utest/test_plugin_api.py
@@ -73,4 +73,8 @@ class PythonObject:
73
python_object = PythonObject()
74
parser = PluginParser(my_plugin_test.LibraryBase, [python_object])
75
plugins = parser.parse_plugins("my_plugin_test.TestPluginWithPythonArgs;4")
76
- assert len(plugins)
+ assert len(plugins) == 1
77
+ plugin = plugins[0]
78
+ assert plugin.python_class.x == 1
79
+ assert plugin.python_class.y == 2
80
+
0 commit comments