当前位置: 首页>>代码示例>>Python>>正文


Python Config.alias方法代码示例

本文整理汇总了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')
开发者ID:RealGeeks,项目名称:thumbor,代码行数:9,代码来源:test_config.py

示例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')
开发者ID:RealGeeks,项目名称:thumbor,代码行数:10,代码来源:test_config.py

示例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')
开发者ID:raphaelfruneaux,项目名称:thumbor,代码行数:5,代码来源:config_vows.py

示例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')
开发者ID:RealGeeks,项目名称:thumbor,代码行数:7,代码来源:test_config.py

示例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')
开发者ID:RealGeeks,项目名称:thumbor,代码行数:7,代码来源:test_config.py

示例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")
开发者ID:halid,项目名称:thumbor,代码行数:5,代码来源:config_vows.py


注:本文中的thumbor.config.Config.alias方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。