コード例 #1
0
ファイル: test_registry.py プロジェクト: faithNassiwa/casepro
    def test_load_pod_title(self):
        """
        The load_pod function should set the config title, or default it title field to the pod type title if it isn't
        given.
        """
        pod = load_pod(23, {'label': 'base_pod', 'title': 'Foo'})
        self.assertEqual(pod.config.title, 'Foo')

        pod = load_pod(23, {'label': 'base_pod'})
        self.assertEqual(pod.config.title, 'Pod')
コード例 #2
0
    def test_load_pod_title(self):
        """
        The load_pod function should set the config title, or default it title field to the pod type title if it isn't
        given.
        """
        pod = load_pod(23, {"label": "base_pod", "title": "Foo"})
        self.assertEqual(pod.config.title, "Foo")

        pod = load_pod(23, {"label": "base_pod"})
        self.assertEqual(pod.config.title, "Pod")
コード例 #3
0
ファイル: test_registry.py プロジェクト: xkmato/casepro
    def test_load_pod_title(self):
        """
        The load_pod function should set the config title, or default it title field to the pod type title if it isn't
        given.
        """
        pod = load_pod(23, {
            'label': 'base_pod',
            'title': 'Foo'
        })
        self.assertEqual(pod.config.title, 'Foo')

        pod = load_pod(23, {'label': 'base_pod'})
        self.assertEqual(pod.config.title, 'Pod')
コード例 #4
0
ファイル: test_registry.py プロジェクト: faithNassiwa/casepro
 def test_load_pod_index(self):
     """
     The load_pod function should set the index on the pod config.
     """
     index = 7
     pod_instance = load_pod(index, {'label': 'base_pod'})
     self.assertEqual(pod_instance.config.index, index)
コード例 #5
0
ファイル: test_registry.py プロジェクト: faithNassiwa/casepro
 def test_load_pod_label(self):
     """
     The load_pod function should load the pod with the correct app label specified by 'type'.
     """
     from casepro.pods import Pod
     pod_instance = load_pod(0, {'label': 'base_pod'})
     self.assertTrue(isinstance(pod_instance, Pod))
コード例 #6
0
ファイル: test_registry.py プロジェクト: xkmato/casepro
 def test_load_pod_index(self):
     """
     The load_pod function should set the index on the pod config.
     """
     index = 7
     pod_instance = load_pod(index, {'label': 'base_pod'})
     self.assertEqual(pod_instance.config.index, index)
コード例 #7
0
ファイル: test_registry.py プロジェクト: xkmato/casepro
 def test_load_pod_label(self):
     """
     The load_pod function should load the pod with the correct app label specified by 'type'.
     """
     from casepro.pods import Pod
     pod_instance = load_pod(0, {'label': 'base_pod'})
     self.assertTrue(isinstance(pod_instance, Pod))
コード例 #8
0
ファイル: test_registry.py プロジェクト: faithNassiwa/casepro
 def test_load_pod_config(self):
     """
     The load_pod function instantiate and pass through the pod's config.
     """
     from casepro.pods import PodConfig
     index = 7
     pod = load_pod(index, {'label': 'base_pod'})
     self.assertTrue(isinstance(pod.config, PodConfig))
コード例 #9
0
ファイル: test_registry.py プロジェクト: xkmato/casepro
 def test_load_pod_config(self):
     """
     The load_pod function instantiate and pass through the pod's config.
     """
     from casepro.pods import PodConfig
     index = 7
     pod = load_pod(index, {'label': 'base_pod'})
     self.assertTrue(isinstance(pod.config, PodConfig))