1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-02-05 08:21:52 +00:00
community.general/tests/unit/plugins/modules/test_django_loaddata.yaml
Alexei Znamensky d0123a1038
django_dumpdata, django_loaddata: new modules (#10726)
* django module, module_utils: adjustments

* more fixes

* more fixes

* further simplification

* django_dumpdata/django_loaddata: new modules

* Update plugins/modules/django_dumpdata.py

Co-authored-by: Felix Fontein <felix@fontein.de>

* add note about idempotency

---------

Co-authored-by: Felix Fontein <felix@fontein.de>
2025-09-03 21:49:11 +02:00

35 lines
993 B
YAML

# -*- coding: utf-8 -*-
# Copyright (c) Alexei Znamensky (russoz@gmail.com)
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
# SPDX-License-Identifier: GPL-3.0-or-later
---
anchors:
environ: &env-def {environ_update: {LANGUAGE: C, LC_ALL: C}, check_rc: true}
test_cases:
- id: command_success
input:
settings: whatever.settings
fixtures: /tmp/mydata.json
mocks:
run_command:
- command: [/testbin/python, -m, django, --version]
environ: *env-def
rc: 0
out: "5.1.2\n"
err: ''
- command:
- /testbin/python
- -m
- django
- loaddata
- --no-color
- --settings=whatever.settings
- --database=default
- --format
- json
- /tmp/mydata.json
environ: *env-def
rc: 0
out: "whatever\n"
err: ''