summaryrefslogtreecommitdiffstats
path: root/tests/test_gobject.py
blob: 34ba09464fdeea498bc3286edf113be97ad46f58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# -*- Mode: Python -*-

import unittest

from common import gobject


class TestGObjectAPI(unittest.TestCase):
    def testGObjectModule(self):
        obj = gobject.GObject()
        self.assertEquals(obj.__module__,
                          'gobject._gobject')