Skip to content

Commit

Permalink
Shorter task names.
Browse files Browse the repository at this point in the history
  • Loading branch information
robert-de-bock committed Sep 20, 2023
1 parent a7db1a6 commit 93eca48
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions tasks/assert.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
---

- name: assert | Test if cntlm_version is set correctly
- name: assert | Test cntlm_version
ansible.builtin.assert:
that:
- cntlm_version is defined
- cntlm_version is string
- cntlm_version is not none
quiet: yes

- name: assert | Test if cntlm_release is set correctly
- name: assert | Test cntlm_release
ansible.builtin.assert:
that:
- cntlm_release is defined
Expand All @@ -17,47 +17,47 @@
- cntlm_release > 0
quiet: yes

- name: assert | Test if cntlm_download_mirror is set correctly
- name: assert | Test cntlm_download_mirror
ansible.builtin.assert:
that:
- cntlm_download_mirror is defined
- cntlm_download_mirror is string
- cntlm_download_mirror is not none
quiet: yes

- name: assert | Test if cntlm_username is set correctly
- name: assert | Test cntlm_username
ansible.builtin.assert:
that:
- cntlm_username is defined
- cntlm_username is string
- cntlm_username is not none
quiet: yes

- name: assert | Test if cntlm_password is set correctly
- name: assert | Test cntlm_password
ansible.builtin.assert:
that:
- cntlm_password is defined
- cntlm_password is string
- cntlm_password is not none
quiet: yes

- name: assert | Test if cntlm_domain is set correctly
- name: assert | Test cntlm_domain
ansible.builtin.assert:
that:
- cntlm_domain is defined
- cntlm_domain is string
- cntlm_domain is not none
quiet: yes

- name: assert | Test if cntlm_proxy is set correctly
- name: assert | Test cntlm_proxy
ansible.builtin.assert:
that:
- cntlm_proxy is defined
- cntlm_proxy is string
- cntlm_proxy is not none
quiet: yes

- name: assert | Test if cntlm_listen is set correctly
- name: assert | Test cntlm_listen
ansible.builtin.assert:
that:
- cntlm_listen is defined
Expand All @@ -66,44 +66,44 @@
- cntlm_listen < 65536
quiet: yes

- name: assert | Test if cntlm_noproxy is set correctly
- name: assert | Test cntlm_noproxy
ansible.builtin.assert:
that:
- cntlm_noproxy is defined
- cntlm_noproxy is string
- cntlm_noproxy is not none
quiet: yes

- name: assert | Test if cntlm_tmp is set correctly
- name: assert | Test cntlm_tmp
ansible.builtin.assert:
that:
- cntlm_tmp is defined
- cntlm_tmp is string
- cntlm_tmp is not none
quiet: yes

- name: assert | Test if cntlm_allows is set correctly
- name: assert | Test cntlm_allows
ansible.builtin.assert:
that:
- cntlm_allows is defined
- cntlm_allows is iterable
quiet: yes

- name: assert | Test if cntlm_denies is set correctly
- name: assert | Test cntlm_denies
ansible.builtin.assert:
that:
- cntlm_denies is defined
- cntlm_denies is iterable
quiet: yes

- name: assert | Test if gateway_enabled is set correctly
- name: assert | Test gateway_enabled
ansible.builtin.assert:
that:
- gateway_enabled is defined
- gateway_enabled is boolean
quiet: yes

- name: assert | Test if cntlm_allows_include_local_ipv4 is set correctly
- name: assert | Test cntlm_allows_include_local_ipv4
ansible.builtin.assert:
that:
- cntlm_allows_include_local_ipv4 is defined
Expand Down

0 comments on commit 93eca48

Please sign in to comment.