(default_cluster)
| 89 | |
| 90 | |
| 91 | def test_plugin_install_invalid_test(default_cluster): |
| 92 | filename = os.path.splitext(os.path.basename(__file__))[0] |
| 93 | code, out, err = exec_cmd(['dcos', 'plugin', 'add', __file__]) |
| 94 | assert code == 1 |
| 95 | assert err == 'Error: {} has no commands\n'.format(filename) |
| 96 | assert out == '' |
| 97 | |
| 98 | |
| 99 | def test_plugin_invocation(default_cluster): |
nothing calls this directly
no test coverage detected