()
| 263 | |
| 264 | |
| 265 | def _install_test_plugin(): |
| 266 | code, out, err = exec_cmd(['dcos', 'plugin', 'add', _test_plugin_path()]) |
| 267 | assert err == 'New commands available: test\n' |
| 268 | assert out == '' |
| 269 | assert code == 0 |
| 270 | |
| 271 | |
| 272 | def _test_plugin_path(): |
no test coverage detected