def test_zonefile_base(): # Arrange # Act result = utils.zonefile_base() # Assert assert result == "/var/lib/named/"
def __init__(self, collection_mgr, logger): """ Constructor """ self.logger = logger if self.logger is None: self.logger = clogger.Logger() self.collection_mgr = collection_mgr self.api = collection_mgr.api self.distros = collection_mgr.distros() self.profiles = collection_mgr.profiles() self.systems = collection_mgr.systems() self.settings = collection_mgr.settings() self.repos = collection_mgr.repos() self.templar = templar.Templar(collection_mgr) self.settings_file = utils.namedconf_location(self.api) self.zonefile_base = utils.zonefile_base(self.api)
def __init__(self, collection_mgr): """ Constructor to create a default BindManager object. :param collection_mgr: The collection manager to resolve all information with. """ self.logger = logging.getLogger() self.collection_mgr = collection_mgr self.api = collection_mgr.api self.distros = collection_mgr.distros() self.profiles = collection_mgr.profiles() self.systems = collection_mgr.systems() self.settings = collection_mgr.settings() self.repos = collection_mgr.repos() self.templar = templar.Templar(collection_mgr) self.settings_file = utils.namedconf_location() self.zonefile_base = utils.zonefile_base()
def __init__(self, collection_mgr): super().__init__(collection_mgr) self.settings_file = utils.namedconf_location() self.zonefile_base = utils.zonefile_base()