summaryrefslogtreecommitdiff
path: root/tests/plugins/python.py
blob: 1a3dd97190e7d71de7be95d9d17f21cfc86beb2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27

from chrysacase import ChrysalideTestCase
from pychrysalide.plugins import PythonPlugin


class TestPlugin(ChrysalideTestCase):
    """TestCase for GPythonPlugin."""


    def testPluginInfoImplementations(self):
        """Retrieve plugin basic information provided by __init__()."""

        class MyPlugin(PythonPlugin):
            """Custom description."""

            def __init__(self):
                super().__init__(__file__, '0.0.1', 'custom-url')

        my = MyPlugin()

        self.assertEqual(my.name, 'MyPlugin')
        self.assertEqual(my.desc, 'Custom description.')
        self.assertEqual(my.version, '0.0.1')
        self.assertEqual(my.url, 'custom-url')

        self.assertEqual(my.filename, __file__)
        self.assertEqual(my.modname, 'python')