本文整理汇总了Python中pybuilder.plugins.python.distutils_plugin.build_string_from_array函数的典型用法代码示例。如果您正苦于以下问题:Python build_string_from_array函数的具体用法?Python build_string_from_array怎么用?Python build_string_from_array使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了build_string_from_array函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_build_string_from_array_of_arrays_multiple_elements
def test_build_string_from_array_of_arrays_multiple_elements(self):
self.assert_line_by_line_equal('''[
[
'a',
'b'
],
[
'c',
'd'
]
]''', build_string_from_array([['a', 'b'], ['c', 'd']]))
示例2: test_build_string_from_array_of_arrays_single_element
def test_build_string_from_array_of_arrays_single_element(self):
self.assert_line_by_line_equal('''[
['a'],
['b']
]''', build_string_from_array([['a'], ['b']]))
示例3: test_build_string_from_array_simple
def test_build_string_from_array_simple(self):
self.assert_line_by_line_equal("['a']", build_string_from_array(['a']))
示例4: test_build_string_from_array_of_array_of_empty
def test_build_string_from_array_of_array_of_empty(self):
self.assert_line_by_line_equal('''[[]]''', build_string_from_array([[]]))
示例5: test_build_string_from_array_empty
def test_build_string_from_array_empty(self):
self.assert_line_by_line_equal('[]', build_string_from_array([]))