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


Python BlockUsageLocator.html_id方法代码示例

本文整理汇总了Python中opaque_keys.edx.locator.BlockUsageLocator.html_id方法的典型用法代码示例。如果您正苦于以下问题:Python BlockUsageLocator.html_id方法的具体用法?Python BlockUsageLocator.html_id怎么用?Python BlockUsageLocator.html_id使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在opaque_keys.edx.locator.BlockUsageLocator的用法示例。


在下文中一共展示了BlockUsageLocator.html_id方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_html_id

# 需要导入模块: from opaque_keys.edx.locator import BlockUsageLocator [as 别名]
# 或者: from opaque_keys.edx.locator.BlockUsageLocator import html_id [as 别名]
 def test_html_id(self):
     course_key = CourseLocator('org', 'course', 'run')
     locator = BlockUsageLocator(course_key, block_type='cat', block_id='name:more_name')
     self.assertEqual(locator.html_id(), "name:more_name")
开发者ID:edx,项目名称:opaque-keys,代码行数:6,代码来源:test_block_usage_locators.py

示例2: test_deprecated_html_id

# 需要导入模块: from opaque_keys.edx.locator import BlockUsageLocator [as 别名]
# 或者: from opaque_keys.edx.locator.BlockUsageLocator import html_id [as 别名]
 def test_deprecated_html_id(self):
     course_key = CourseLocator('org', 'course', 'run', version_guid='rev', deprecated=True)
     locator = BlockUsageLocator(course_key, block_type='cat', block_id='name:more_name', deprecated=True)
     self.assertEqual(locator.html_id(), "i4x-org-course-cat-name_more_name-rev")
开发者ID:edx,项目名称:opaque-keys,代码行数:6,代码来源:test_block_usage_locators.py

示例3: test_html_id

# 需要导入模块: from opaque_keys.edx.locator import BlockUsageLocator [as 别名]
# 或者: from opaque_keys.edx.locator.BlockUsageLocator import html_id [as 别名]
 def test_html_id(self):
     course_key = CourseLocator('org', 'course', 'run')
     locator = BlockUsageLocator(course_key, block_type='cat', block_id='name:more_name')
     self.assertEquals(locator.html_id(), "block-v1:[email protected][email protected]:more_name")
开发者ID:rishimaths,项目名称:opaque-keys,代码行数:6,代码来源:test_block_usage_locators.py


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