當前位置: 首頁>>代碼示例>>Python>>正文


Python Configurable.configure方法代碼示例

本文整理匯總了Python中aspen.configuration.Configurable.configure方法的典型用法代碼示例。如果您正苦於以下問題:Python Configurable.configure方法的具體用法?Python Configurable.configure怎麽用?Python Configurable.configure使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在aspen.configuration.Configurable的用法示例。


在下文中一共展示了Configurable.configure方法的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_nirvana

# 需要導入模塊: from aspen.configuration import Configurable [as 別名]
# 或者: from aspen.configuration.Configurable import configure [as 別名]
def test_nirvana():
    logging.getLogger().handlers = []  # override nose logging nosiness
    c = Configurable()
    c.configure(['-vNIRVANA'])
    actual = c.log_level
    expected = sys.maxint
    assert actual == expected, actual
開發者ID:buchuki,項目名稱:aspen,代碼行數:9,代碼來源:test_configuration.py

示例2: test_configurable_sees_root_option

# 需要導入模塊: from aspen.configuration import Configurable [as 別名]
# 或者: from aspen.configuration.Configurable import configure [as 別名]
def test_configurable_sees_root_option():
    mk()
    c = Configurable()
    c.configure(['--root', FSFIX])
    expected = os.getcwd()
    actual = c.root
    assert actual == expected, actual
開發者ID:buchuki,項目名稱:aspen,代碼行數:9,代碼來源:test_configuration.py

示例3: test_root_defaults_to_cwd

# 需要導入模塊: from aspen.configuration import Configurable [as 別名]
# 或者: from aspen.configuration.Configurable import configure [as 別名]
def test_root_defaults_to_cwd():
    mk()
    c = Configurable()
    c.configure([])
    expected = os.getcwd()
    actual = c.root
    assert actual == expected, actual
開發者ID:buchuki,項目名稱:aspen,代碼行數:9,代碼來源:test_configuration.py

示例4: test_ConfigurationError_NOT_raised_if_no_cwd_but_do_have__www_root

# 需要導入模塊: from aspen.configuration import Configurable [as 別名]
# 或者: from aspen.configuration.Configurable import configure [as 別名]
def test_ConfigurationError_NOT_raised_if_no_cwd_but_do_have__www_root(harness):
    foo = os.getcwd()
    os.chdir(harness.fs.project.resolve(''))
    os.rmdir(os.getcwd())
    c = Configurable()
    c.configure(['--www_root', foo])
    assert c.www_root == foo
開發者ID:Acidburn0zzz,項目名稱:aspen-python,代碼行數:9,代碼來源:test_configuration.py

示例5: test_www_root_defaults_to_cwd

# 需要導入模塊: from aspen.configuration import Configurable [as 別名]
# 或者: from aspen.configuration.Configurable import configure [as 別名]
def test_www_root_defaults_to_cwd():
    mk()
    c = Configurable()
    c.configure([])
    expected = os.path.realpath(os.getcwd())
    actual = c.www_root
    assert actual == expected, actual
開發者ID:ArmstrongJ,項目名稱:aspen-python,代碼行數:9,代碼來源:test_configuration.py

示例6: test_ConfigurationError_NOT_raised_if_no_cwd_but_do_have___root

# 需要導入模塊: from aspen.configuration import Configurable [as 別名]
# 或者: from aspen.configuration.Configurable import configure [as 別名]
def test_ConfigurationError_NOT_raised_if_no_cwd_but_do_have___root():
    mk()
    foo = os.getcwd()
    os.chdir(FSFIX)
    os.rmdir(os.getcwd())
    c = Configurable()
    c.configure(['--root', foo])
    expected = foo
    actual = c.root
    assert actual == expected, actual
開發者ID:buchuki,項目名稱:aspen,代碼行數:12,代碼來源:test_configuration.py

示例7: test_defaults_to_defaults

# 需要導入模塊: from aspen.configuration import Configurable [as 別名]
# 或者: from aspen.configuration.Configurable import configure [as 別名]
def test_defaults_to_defaults(harness):
    c = Configurable()
    c.configure()
    actual = ( c.logging_threshold
             , c.project_root
             , c.www_root

             , c.changes_reload
             , c.charset_dynamic
             , c.charset_static
             , c.indices
             , c.list_directories
             , c.media_type_default
             , c.media_type_json
             , c.renderer_default
             , c.show_tracebacks
              )
    expected = ( 0, None, os.getcwd(), False, 'UTF-8', None
               , ['index.html', 'index.json', 'index', 'index.html.spt', 'index.json.spt', 'index.spt']
               , False, 'text/plain', 'application/json', 'stdlib_percent', False
                )
    assert actual == expected
開發者ID:jaraco,項目名稱:aspen,代碼行數:24,代碼來源:test_configuration.py

示例8: test_configurable_sees_root_option

# 需要導入模塊: from aspen.configuration import Configurable [as 別名]
# 或者: from aspen.configuration.Configurable import configure [as 別名]
def test_configurable_sees_root_option(harness):
    c = Configurable()
    c.configure(['--www_root', harness.fs.project.resolve('')])
    expected = harness.fs.project.root
    actual = c.www_root
    assert actual == expected
開發者ID:Acidburn0zzz,項目名稱:aspen-python,代碼行數:8,代碼來源:test_configuration.py

示例9: test_logging_threshold_goes_to_eleven

# 需要導入模塊: from aspen.configuration import Configurable [as 別名]
# 或者: from aspen.configuration.Configurable import configure [as 別名]
def test_logging_threshold_goes_to_eleven():
    c = Configurable()
    c.configure(logging_threshold='11')
    assert c.logging_threshold == 11
開發者ID:jaraco,項目名稱:aspen,代碼行數:6,代碼來源:test_configuration.py


注:本文中的aspen.configuration.Configurable.configure方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。