本文整理匯總了Python中opaque_keys.edx.locator.LibraryLocator._to_string方法的典型用法代碼示例。如果您正苦於以下問題:Python LibraryLocator._to_string方法的具體用法?Python LibraryLocator._to_string怎麽用?Python LibraryLocator._to_string使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類opaque_keys.edx.locator.LibraryLocator
的用法示例。
在下文中一共展示了LibraryLocator._to_string方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_lib_key_constructor_version_guid
# 需要導入模塊: from opaque_keys.edx.locator import LibraryLocator [as 別名]
# 或者: from opaque_keys.edx.locator.LibraryLocator import _to_string [as 別名]
def test_lib_key_constructor_version_guid(self, version_id):
version_id_str = str(version_id)
version_id_obj = ObjectId(version_id)
lib_key = LibraryLocator(version_guid=version_id)
self.assertEqual(lib_key.version_guid, version_id_obj) # pylint: disable=no-member
self.assertEqual(lib_key.org, None)
self.assertEqual(lib_key.library, None) # pylint: disable=no-member
self.assertEqual(str(lib_key.version_guid), version_id_str) # pylint: disable=no-member
# Allow access to _to_string
# pylint: disable=protected-access
expected_str = u'@'.join((lib_key.VERSION_PREFIX, version_id_str))
self.assertEqual(lib_key._to_string(), expected_str)
self.assertEqual(str(lib_key), u'library-v1:' + expected_str)
self.assertEqual(lib_key.html_id(), u'library-v1:' + expected_str)