本文整理汇总了Python中models.PageOperationMixin.parse_sections方法的典型用法代码示例。如果您正苦于以下问题:Python PageOperationMixin.parse_sections方法的具体用法?Python PageOperationMixin.parse_sections怎么用?Python PageOperationMixin.parse_sections使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类models.PageOperationMixin
的用法示例。
在下文中一共展示了PageOperationMixin.parse_sections方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_specifying_default_section
# 需要导入模块: from models import PageOperationMixin [as 别名]
# 或者: from models.PageOperationMixin import parse_sections [as 别名]
def test_specifying_default_section(self):
data = PageOperationMixin.parse_sections(u'Hello', u'longText')
self.assertEqual({'longText'}, set(data.keys()))
self.assertEqual(u'Hello', data['longText'])
示例2: test_additional_sections
# 需要导入模块: from models import PageOperationMixin [as 别名]
# 或者: from models.PageOperationMixin import parse_sections [as 别名]
def test_additional_sections(self):
data = PageOperationMixin.parse_sections(u'Hello\n\nsection1::---\n\nHello\n\nthere\n\nsection2::---\n\nGood\n\nbye\n')
self.assertEqual({'articleBody', 'section1', 'section2'}, set(data.keys()))
self.assertEqual(u'Hello', data['articleBody'])
self.assertEqual(u'Hello\n\nthere', data['section1'])
self.assertEqual(u'Good\n\nbye', data['section2'])
示例3: test_default_section
# 需要导入模块: from models import PageOperationMixin [as 别名]
# 或者: from models.PageOperationMixin import parse_sections [as 别名]
def test_default_section(self):
data = PageOperationMixin.parse_sections(u'Hello')
self.assertEqual({'articleBody'}, set(data.keys()))
self.assertEqual(u'Hello', data['articleBody'])