InstallConfigurablePlugin builds and installs a plugin called 'configurable_plugin' with the given name, version, and commands.
(pluginType string, name string, version string, pluginCommands []PluginCommand)
| 19 | // InstallConfigurablePlugin builds and installs a plugin called 'configurable_plugin' |
| 20 | // with the given name, version, and commands. |
| 21 | func InstallConfigurablePlugin(pluginType string, name string, version string, pluginCommands []PluginCommand) { |
| 22 | path := BuildConfigurablePlugin(pluginType, name, version, pluginCommands) |
| 23 | Eventually(CF("install-plugin", "-f", path)).Should(Exit(0)) |
| 24 | } |
| 25 | |
| 26 | // BuildConfigurablePlugin builds a plugin of type pluginType from the integration/assets/<pluginType> |
| 27 | // directory with the given name, version, and commands. |
no test coverage detected