Fix FQCRs. (#64)

This commit is contained in:
Felix Fontein 2020-03-29 13:02:28 +02:00 committed by GitHub
commit 6ab9f071c6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 19 additions and 19 deletions

View file

@ -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'