File: test_meta.py

package info (click to toggle)
python-typish 1.9.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 324 kB
  • sloc: python: 1,632; makefile: 2
file content (9 lines) | stat: -rw-r--r-- 232 bytes parent folder | download
1
2
3
4
5
6
7
8
9
from unittest import TestCase

from typish import __version__


class TestMeta(TestCase):
    def test_meta(self):
        # Test that __version__ is importable and is a string.
        self.assertTrue(isinstance(__version__, str))