(self)
| 35 | |
| 36 | class PadPushUnlinkedTest(TestCase): |
| 37 | def setUp(self): |
| 38 | TestCase.setUp(self) |
| 39 | self.src = gst.Pad("src", gst.PAD_SRC) |
| 40 | self.sink = gst.Pad("sink", gst.PAD_SINK) |
| 41 | |
| 42 | def tearDown(self): |
| 43 | self.assertEquals(sys.getrefcount(self.src), pygobject_2_13 and 2 or 3) |