1
2from PyObjCTools.TestSupport import *
3from AppKit import *
4
5class TestNSTextList (TestCase):
6    def testConstants(self):
7        self.assertEqual(NSTextListPrependEnclosingMarker, 1)
8
9if __name__ == "__main__":
10    main()
11