コード例 #1
0
def test_section_data():
    data = [
        {
            "resources": [
                {
                    "type": "CourseActivity",
                    "description": "Hello world",
                    "title": "First slide",
                },
                {
                    "type": "CourseActivity",
                    "description": "Olé!",
                    "title": "Intermission",
                },
            ]
        },
        {
            "resources": [{
                "type": "CourseActivity",
                "description": "Second section description",
                "title": "Second section title",
            }]
        },
    ]
    course = models.Course(sections=json.dumps(data))
    assert course.section_data() == data
コード例 #2
0
def test_moodle_activities():
    data = [
        {
            "resources": [
                {
                    "type": "CourseActivity",
                    "description": "Hello world",
                    "title": "First slide",
                },
                {
                    "type": "CourseActivity",
                    "description": "Olé!",
                    "title": "Intermission",
                },
            ]
        },
        {
            "resources": [{
                "type": "CourseActivity",
                "description": "Second section description",
                "title": "Second section title",
            }]
        },
    ]
    course = models.Course(sections=json.dumps(data))
    sections, activities = course.activities_for_export()

    assert sections == [{
        "id": 1,
        "sequence": [1, 2]
    }, {
        "id": 2,
        "sequence": [3]
    }]

    assert activities == [
        {
            "id": 1,
            "type": "page",
            "intro": "First slide",
            "content": "Hello world",
            "section": 1,
        },
        {
            "id": 2,
            "type": "page",
            "intro": "Intermission",
            "content": "Olé!",
            "section": 1,
        },
        {
            "id": 3,
            "type": "page",
            "intro": "Second section title",
            "content": "Second section description",
            "section": 2,
        },
    ]
コード例 #3
0
def test_moodle_name():
    course = models.Course(title="Thé Best Course")
    assert course.moodle_file_name == "the-best-course.mbz"