mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-01-26 16:16:31 -06:00
1684b0f2c3
The fedora_container platform was missing User and Group members. Add test case to verify that all known platforms define correct module API. Fixes: https://pagure.io/freeipa/issue/8519 Signed-off-by: Christian Heimes <cheimes@redhat.com> Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com>
17 lines
355 B
Python
17 lines
355 B
Python
#
|
|
# Copyright (C) 2020 FreeIPA Contributors see COPYING for license
|
|
#
|
|
"""Fedora container constants
|
|
"""
|
|
from ipaplatform.fedora.constants import FedoraConstantsNamespace, User, Group
|
|
|
|
|
|
__all__ = ("constants", "User", "Group")
|
|
|
|
|
|
class FedoraContainerConstantsNamespace(FedoraConstantsNamespace):
|
|
pass
|
|
|
|
|
|
constants = FedoraContainerConstantsNamespace()
|