本文整理汇总了Python中thumbor.config.Config.alias方法的典型用法代码示例。如果您正苦于以下问题:Python Config.alias方法的具体用法?Python Config.alias怎么用?Python Config.alias使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类thumbor.config.Config
的用法示例。
在下文中一共展示了Config.alias方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_with_aliased_aliases
# 需要导入模块: from thumbor.config import Config [as 别名]
# 或者: from thumbor.config.Config import alias [as 别名]
def test_with_aliased_aliases(self):
Config.alias('STORAGE_ALIAS', 'STORAGE')
Config.alias('STORAGE_ALIAS_ALIAS', 'STORAGE_ALIAS')
cfg = Config(STORAGE_ALIAS_ALIAS='z')
expect(cfg.STORAGE).to_equal('z')
expect(cfg.STORAGE_ALIAS).to_equal('z')
expect(cfg.STORAGE_ALIAS_ALIAS).to_equal('z')
示例2: test_with_aliased_aliases_with_default_values
# 需要导入模块: from thumbor.config import Config [as 别名]
# 或者: from thumbor.config.Config import alias [as 别名]
def test_with_aliased_aliases_with_default_values(self):
Config.alias('STORAGE_ALIAS', 'STORAGE')
Config.alias('STORAGE_ALIAS_ALIAS', 'STORAGE_ALIAS')
cfg = Config()
expect(cfg.STORAGE).to_equal(self.get_default_storage())
expect(cfg.STORAGE_ALIAS).to_equal(self.get_default_storage())
expect(cfg.STORAGE_ALIAS_ALIAS).to_equal(self.get_default_storage())
expect(cfg.__class__.__module__).to_equal('derpconf.config')
示例3: topic
# 需要导入模块: from thumbor.config import Config [as 别名]
# 或者: from thumbor.config.Config import alias [as 别名]
def topic(self):
Config.alias('OTHER_ENGINE', 'ENGINE')
return Config(OTHER_ENGINE='x')
示例4: test_config_is_an_alias
# 需要导入模块: from thumbor.config import Config [as 别名]
# 或者: from thumbor.config.Config import alias [as 别名]
def test_config_is_an_alias(self):
Config.alias('OTHER_ENGINE', 'ENGINE')
cfg = Config(OTHER_ENGINE='x')
expect(cfg.ENGINE).to_equal('x')
expect(cfg.OTHER_ENGINE).to_equal('x')
示例5: test_config_is_an_aliased_key
# 需要导入模块: from thumbor.config import Config [as 别名]
# 或者: from thumbor.config.Config import alias [as 别名]
def test_config_is_an_aliased_key(self):
Config.alias('LOADER_ALIAS', 'LOADER')
cfg = Config(LOADER='y')
expect(cfg.LOADER).to_equal('y')
expect(cfg.LOADER_ALIAS).to_equal('y')
示例6: topic
# 需要导入模块: from thumbor.config import Config [as 别名]
# 或者: from thumbor.config.Config import alias [as 别名]
def topic(self):
Config.alias("LOADER_ALIAS", "LOADER")
return Config(LOADER="y")