コード例 #1
0
    def test_get_section(self):
        content = ContentBuilder([{
            "id": "first_section",
            "name": "First section",
            "questions": [
                {
                    "question": 'First question',
                    "depends": [{
                        "on": "lot",
                        "being": ["SCS", "SaaS", "PaaS"]
                    }]
                }
            ]
        }])

        assert content.get_section(
            "first_section").get("id") == "first_section"

        content = content.filter({"lot": "IaaS"})
        assert content.get_section("first_section") is None