mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-23 05:10:22 -07:00
Fix FQCRs. (#64)
This commit is contained in:
parent
3c4e98cce2
commit
6ab9f071c6
11 changed files with 19 additions and 19 deletions
|
@ -1,14 +1,14 @@
|
|||
- hosts: localhost
|
||||
tasks:
|
||||
- debug:
|
||||
msg: '{{ query(''lmdb_kv'', ''nl'', ''be'', ''lu'', db=''jp.mdb'') }}'
|
||||
msg: '{{ query(''community.general.lmdb_kv'', ''nl'', ''be'', ''lu'', db=''jp.mdb'') }}'
|
||||
- debug:
|
||||
var: item.1
|
||||
loop: '{{ query(''community.general.lmdb_kv'', db=''jp.mdb'') }}'
|
||||
- assert:
|
||||
that:
|
||||
- query('lmdb_kv', 'nl', 'be', 'lu', db='jp.mdb') == ['Netherlands', 'Belgium', 'Luxembourg']
|
||||
- query('lmdb_kv', db='jp.mdb')|length == 5
|
||||
- query('community.general.lmdb_kv', 'nl', 'be', 'lu', db='jp.mdb') == ['Netherlands', 'Belgium', 'Luxembourg']
|
||||
- query('community.general.lmdb_kv', db='jp.mdb')|length == 5
|
||||
- assert:
|
||||
that:
|
||||
- item.0 == 'nl'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue