本文整理汇总了Python中supervisor.datatypes.dict_of_key_value_pairs函数的典型用法代码示例。如果您正苦于以下问题:Python dict_of_key_value_pairs函数的具体用法?Python dict_of_key_value_pairs怎么用?Python dict_of_key_value_pairs使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了dict_of_key_value_pairs函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。
示例1: test_dict_of_key_value_pairs_handles_unquoted_non_alphanum
def test_dict_of_key_value_pairs_handles_unquoted_non_alphanum(self):
actual = datatypes.dict_of_key_value_pairs(
'HOME=/home/auser,FOO=/.foo+(1.2)-_/,'
'SUPERVISOR_SERVER_URL=http://127.0.0.1:9001')
expected = {'HOME': '/home/auser', 'FOO': '/.foo+(1.2)-_/',
'SUPERVISOR_SERVER_URL': 'http://127.0.0.1:9001'}
self.assertEqual(actual, expected)
开发者ID:JeremyGrosser,项目名称:supervisor,代码行数:7,代码来源:test_datatypes.py
示例2: test_dict_of_key_value_pairs_returns_empty_dict_for_empty_str
def test_dict_of_key_value_pairs_returns_empty_dict_for_empty_str(self):
actual = datatypes.dict_of_key_value_pairs("")
self.assertEqual({}, actual)
开发者ID:hellhovnd,项目名称:supervisor,代码行数:3,代码来源:test_datatypes.py
示例3: test_dict_of_key_value_pairs_allows_trailing_comma
def test_dict_of_key_value_pairs_allows_trailing_comma(self):
actual = datatypes.dict_of_key_value_pairs("foo=bar,")
expected = {"foo": "bar"}
self.assertEqual(actual, expected)
开发者ID:hellhovnd,项目名称:supervisor,代码行数:4,代码来源:test_datatypes.py
示例4: test_dict_of_key_value_pairs_handles_unquoted_non_alphanum
def test_dict_of_key_value_pairs_handles_unquoted_non_alphanum(self):
actual = datatypes.dict_of_key_value_pairs(
"HOME=/home/auser,FOO=/.foo+(1.2)-_/," "SUPERVISOR_SERVER_URL=http://127.0.0.1:9001"
)
expected = {"HOME": "/home/auser", "FOO": "/.foo+(1.2)-_/", "SUPERVISOR_SERVER_URL": "http://127.0.0.1:9001"}
self.assertEqual(actual, expected)
开发者ID:hellhovnd,项目名称:supervisor,代码行数:6,代码来源:test_datatypes.py
示例5: test_dict_of_key_value_pairs_handles_commas_inside_quotes
def test_dict_of_key_value_pairs_handles_commas_inside_quotes(self):
actual = datatypes.dict_of_key_value_pairs('foo="bar,baz",baz="q,ux"')
expected = {"foo": "bar,baz", "baz": "q,ux"}
self.assertEqual(actual, expected)
开发者ID:hellhovnd,项目名称:supervisor,代码行数:4,代码来源:test_datatypes.py
示例6: test_dict_of_key_value_pairs_handles_commas_inside_apostrophes
def test_dict_of_key_value_pairs_handles_commas_inside_apostrophes(self):
actual = datatypes.dict_of_key_value_pairs("foo='bar,baz',baz='q,ux'")
expected = {"foo": "bar,baz", "baz": "q,ux"}
self.assertEqual(actual, expected)
开发者ID:hellhovnd,项目名称:supervisor,代码行数:4,代码来源:test_datatypes.py
示例7: test_handles_empty_inside_quotes_with_second_unquoted_pair
def test_handles_empty_inside_quotes_with_second_unquoted_pair(self):
actual = datatypes.dict_of_key_value_pairs('foo="",bar=a')
expected = {'foo': '', 'bar': 'a'}
self.assertEqual(actual, expected)
开发者ID:Supervisor,项目名称:supervisor,代码行数:4,代码来源:test_datatypes.py
示例8: test_dict_of_key_value_pairs_returns_dict_even_if_whitespace
def test_dict_of_key_value_pairs_returns_dict_even_if_whitespace(self):
actual = datatypes.dict_of_key_value_pairs(" foo = bar , baz = qux ")
expected = {"foo": "bar", "baz": "qux"}
self.assertEqual(actual, expected)
开发者ID:hellhovnd,项目名称:supervisor,代码行数:4,代码来源:test_datatypes.py
示例9: test_dict_of_key_value_pairs_returns_dict_from_single_pair_str
def test_dict_of_key_value_pairs_returns_dict_from_single_pair_str(self):
actual = datatypes.dict_of_key_value_pairs('foo=bar')
expected = {'foo': 'bar'}
self.assertEqual(actual, expected)
开发者ID:JeremyGrosser,项目名称:supervisor,代码行数:4,代码来源:test_datatypes.py
示例10: test_dict_of_key_value_pairs_returns_dict_even_if_newlines
def test_dict_of_key_value_pairs_returns_dict_even_if_newlines(self):
actual = datatypes.dict_of_key_value_pairs('foo\n=\nbar\n,\nbaz\n=\nqux')
expected = {'foo': 'bar', 'baz': 'qux'}
self.assertEqual(actual, expected)
开发者ID:JeremyGrosser,项目名称:supervisor,代码行数:4,代码来源:test_datatypes.py
示例11: test_handles_empty_inside_quotes
def test_handles_empty_inside_quotes(self):
actual = datatypes.dict_of_key_value_pairs('foo=""')
expected = {'foo': ''}
self.assertEqual(actual, expected)
开发者ID:Girgitt,项目名称:supervisor,代码行数:4,代码来源:test_datatypes.py
示例12: test_handles_newlines_inside_quotes
def test_handles_newlines_inside_quotes(self):
actual = datatypes.dict_of_key_value_pairs('foo="a\nb\nc"')
expected = {'foo': 'a\nb\nc'}
self.assertEqual(actual, expected)
开发者ID:Girgitt,项目名称:supervisor,代码行数:4,代码来源:test_datatypes.py
示例13: _callFUT
def _callFUT(self, arg):
return datatypes.dict_of_key_value_pairs(arg)
开发者ID:Girgitt,项目名称:supervisor,代码行数:2,代码来源:test_datatypes.py
示例14: test_dict_of_key_value_pairs_returns_dict_from_multi_pair_str
def test_dict_of_key_value_pairs_returns_dict_from_multi_pair_str(self):
actual = datatypes.dict_of_key_value_pairs('foo=bar,baz=qux')
expected = {'foo': 'bar', 'baz': 'qux'}
self.assertEqual(actual, expected)
开发者ID:JeremyGrosser,项目名称:supervisor,代码行数:4,代码来源:test_datatypes.py
示例15: test_dict_of_key_value_pairs_unicode
def test_dict_of_key_value_pairs_unicode(self):
actual = datatypes.dict_of_key_value_pairs(u'foo=bar,baz=qux')
expected = {'foo': 'bar', 'baz': 'qux'}
self.assertEqual(actual, expected)
开发者ID:carriercomm,项目名称:supervisor-1,代码行数:4,代码来源:test_datatypes.py
注:本文中的supervisor.datatypes.dict_of_key_value_pairs函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论