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


Python ExampleCertificateSet.latest_status方法代码示例

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


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

示例1: test_latest_status_unavailable

# 需要导入模块: from certificates.models import ExampleCertificateSet [as 别名]
# 或者: from certificates.models.ExampleCertificateSet import latest_status [as 别名]
    def test_latest_status_unavailable(self):
        # Delete any existing statuses
        ExampleCertificateSet.objects.all().delete()

        # Verify that the "latest" status is None
        result = ExampleCertificateSet.latest_status(self.COURSE_KEY)
        self.assertIs(result, None)
开发者ID:AndreySonetico,项目名称:edx-platform,代码行数:9,代码来源:test_models.py

示例2: example_certificates_status

# 需要导入模块: from certificates.models import ExampleCertificateSet [as 别名]
# 或者: from certificates.models.ExampleCertificateSet import latest_status [as 别名]
def example_certificates_status(course_key):
    """Check the status of example certificates for a course.

    This will check the *latest* example certificate task.
    This is generally what we care about in terms of enabling/disabling
    self-generated certificates for a course.

    Arguments:
        course_key (CourseKey): The course identifier.

    Returns:
        list

    Example Usage:

        >>> from certificates import api as certs_api
        >>> certs_api.example_certificate_status(course_key)
        [
            {
                'description': 'honor',
                'status': 'success',
                'download_url': 'http://www.example.com/abcd/honor_cert.pdf'
            },
            {
                'description': 'verified',
                'status': 'error',
                'error_reason': 'No template found!'
            }
        ]

    """
    return ExampleCertificateSet.latest_status(course_key)
开发者ID:chauhanhardik,项目名称:populo,代码行数:34,代码来源:api.py

示例3: test_latest_status_is_course_specific

# 需要导入模块: from certificates.models import ExampleCertificateSet [as 别名]
# 或者: from certificates.models.ExampleCertificateSet import latest_status [as 别名]
 def test_latest_status_is_course_specific(self):
     other_course = CourseLocator(org='other', course='other', run='other')
     result = ExampleCertificateSet.latest_status(other_course)
     self.assertIs(result, None)
开发者ID:AndreySonetico,项目名称:edx-platform,代码行数:6,代码来源:test_models.py


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