blob: 4b98e6037d8302151a5ae93cc4793be1d49e08e3 [file] [log] [blame]
import funcsigs
import unittest2 as unittest
class TestFormatAnnotation(unittest.TestCase):
def test_string (self):
self.assertEqual(funcsigs.formatannotation("annotation"),
"'annotation'")
def test_builtin_type (self):
self.assertEqual(funcsigs.formatannotation(int),
"int")
def test_user_type (self):
class dummy (object): pass
self.assertEqual(funcsigs.formatannotation(dummy),
"tests.test_formatannotation.dummy")