diff options
author | Bartek Grzybowski <b.grzybowski@partner.samsung.com> | 2020-09-15 16:51:24 +0200 |
---|---|---|
committer | Bartek Grzybowski <b.grzybowski@partner.samsung.com> | 2020-09-17 10:27:42 +0200 |
commit | e2b009b1c28575e34904b9f2275ced1c4ec06fec (patch) | |
tree | cc811af84d704a048605226fb4f7bf973c463a3f /ansible/roles/kubectl/molecule/default/tests/test_default.py | |
parent | f6c503b35aa9f999b0cff39bb305308e03afb80a (diff) |
Add feature to install shell autocompletion for kubectl
Change-Id: I732dcd92144f9a8489a351047ab88b53ca36759e
Issue-ID: OOM-2564
Signed-off-by: Bartek Grzybowski <b.grzybowski@partner.samsung.com>
Diffstat (limited to 'ansible/roles/kubectl/molecule/default/tests/test_default.py')
-rw-r--r-- | ansible/roles/kubectl/molecule/default/tests/test_default.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ansible/roles/kubectl/molecule/default/tests/test_default.py b/ansible/roles/kubectl/molecule/default/tests/test_default.py index 4f799b95..3f4c7c7d 100644 --- a/ansible/roles/kubectl/molecule/default/tests/test_default.py +++ b/ansible/roles/kubectl/molecule/default/tests/test_default.py @@ -9,3 +9,7 @@ testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner( def test_kubectl(host): assert host.file('/usr/local/bin/kubectl').exists assert host.run('kubectl').rc != 127 + + +def test_kubectl_bash_completion(host): + assert host.file('/etc/bash_completion.d/kubectl').exists |