コード例 #1
0
ファイル: test_boxes.py プロジェクト: 3108as/ella
    def test_box_works_for_any_class(self):
        class TestClass(object):
            title = 'Heyoo'
        test_obj = TestClass()
        test_box = Box(test_obj, 'box_type', [])

        tools.assert_equals([
            'box/content_type/testclass/box_type.html',
            'box/content_type/testclass/box.html',
            'box/box_type.html',
            'box/box.html'
        ], test_box._get_template_list())

        template_loader.templates['box/content_type/testclass/box_type.html'] = '{{ object.title}}'
        tools.assert_equals('Heyoo', test_box.render(Context({})))
コード例 #2
0
    def test_box_works_for_any_class(self):
        class TestClass(object):
            title = 'Heyoo'

        test_obj = TestClass()
        test_box = Box(test_obj, 'box_type', [])

        tools.assert_equals([
            'box/content_type/testclass/box_type.html',
            'box/content_type/testclass/box.html', 'box/box_type.html',
            'box/box.html'
        ], test_box._get_template_list())

        template_loader.templates[
            'box/content_type/testclass/box_type.html'] = '{{ object.title}}'
        tools.assert_equals('Heyoo', test_box.render(Context({})))
コード例 #3
0
ファイル: test_boxes.py プロジェクト: pombredanne/ella
    def test_box_works_for_any_class(self):
        class TestClass(object):
            title = "Heyoo"

        test_obj = TestClass()
        test_box = Box(test_obj, "box_type", [])

        tools.assert_equals(
            [
                "box/content_type/testclass/box_type.html",
                "box/content_type/testclass/box.html",
                "box/box_type.html",
                "box/box.html",
            ],
            test_box._get_template_list(),
        )

        template_loader.templates["box/content_type/testclass/box_type.html"] = "{{ object.title}}"
        tools.assert_equals("Heyoo", test_box.render(Context({})))
コード例 #4
0
ファイル: test_boxes.py プロジェクト: pombredanne/ella
    def test_box_template_path_contains_correct_content_type(self):
        publishable = Publishable.objects.get(pk=self.publishable.pk)
        article = publishable.target

        box_publishable = publishable.box_class(publishable, "box_type", [])
        box_article = Box(article, "box_type", [])

        template_list = [
            "box/category/nested-category/content_type/articles.article/first-article/box_type.html",
            "box/category/nested-category/content_type/articles.article/box_type.html",
            "box/category/nested-category/content_type/articles.article/box.html",
            "box/content_type/articles.article/first-article/box_type.html",
            "box/content_type/articles.article/box_type.html",
            "box/content_type/articles.article/box.html",
            "box/box_type.html",
            "box/box.html",
        ]

        tools.assert_equals(template_list, box_publishable._get_template_list())
        tools.assert_equals(template_list, box_article._get_template_list())
コード例 #5
0
    def test_box_template_path_contains_correct_content_type(self):
        publishable = Publishable.objects.get(pk=self.publishable.pk)
        article = publishable.target

        box_publishable = publishable.box_class(publishable, 'box_type', [])
        box_article = Box(article, 'box_type', [])

        template_list = [
            'box/category/nested-category/content_type/articles.article/first-article/box_type.html',
            'box/category/nested-category/content_type/articles.article/box_type.html',
            'box/category/nested-category/content_type/articles.article/box.html',
            'box/content_type/articles.article/first-article/box_type.html',
            'box/content_type/articles.article/box_type.html',
            'box/content_type/articles.article/box.html',
            'box/box_type.html',
            'box/box.html',
        ]

        self.assert_equals(template_list, box_publishable._get_template_list())
        self.assert_equals(template_list, box_article._get_template_list())