summaryrefslogtreecommitdiff
path: root/test/units/galaxy
diff options
context:
space:
mode:
authorJordan Borean <jborean93@gmail.com>2019-07-23 06:50:46 +1000
committerGitHub <noreply@github.com>2019-07-23 06:50:46 +1000
commit65049620eedba1f3f33e5ade0704ccf6fd14c48b (patch)
treed21a18e7de142f99934724e1e7fad241079daa39 /test/units/galaxy
parent28b9f71640ca945ded810fc149dfc12d8123188b (diff)
downloadansible-65049620eedba1f3f33e5ade0704ccf6fd14c48b.tar.gz
Generate galaxy.yml based on single source of truth (#59170)
* Generate galaxy.yml based on single source of truth * Fix up tests and align file names * Minor Makefile tweak * Remove link in galaxy.yml file and make it a template file * Moved collections docs to dev_guide * change Makefile clean path * Added readme to example meta file * review fixes * Use newer style for doc generation script * Fix mistake in dev_guide index * removed uneeded file, fixed links and added preview banner * Moved banner for sanity test
Diffstat (limited to 'test/units/galaxy')
-rw-r--r--test/units/galaxy/test_collection.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/test/units/galaxy/test_collection.py b/test/units/galaxy/test_collection.py
index 2eca2473aa..02441baa18 100644
--- a/test/units/galaxy/test_collection.py
+++ b/test/units/galaxy/test_collection.py
@@ -215,11 +215,6 @@ readme: README.md"""], indirect=True)
def test_defaults_galaxy_yml(galaxy_yml):
actual = collection._get_galaxy_yml(galaxy_yml)
- assert sorted(list(actual.keys())) == [
- 'authors', 'dependencies', 'description', 'documentation', 'homepage', 'issues', 'license_file', 'license_ids',
- 'name', 'namespace', 'readme', 'repository', 'tags', 'version',
- ]
-
assert actual['namespace'] == 'namespace'
assert actual['name'] == 'collection'
assert actual['authors'] == ['Jordan']