summaryrefslogtreecommitdiff
path: root/tests/test_button.py
blob: a38edafa52fba628a4cbbcbddd6ced748d162c49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import unittest

from common import gtk

class TextButton(unittest.TestCase):
    # Bug #524187.
    def test_constructor(self):
        button = gtk.Button()
        self.assert_(button.props.use_underline)

if __name__ == '__main__':
    unittest.main()