blob: 169c85a0802ce1c615fd45fb45660266f3844d79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
diff --git a/testsuite/test_gst.py b/testsuite/test_gst.py
index 2111b968..fd8a4627 100644
--- a/testsuite/test_gst.py
+++ b/testsuite/test_gst.py
@@ -38,45 +38,6 @@ class TimeArgsTest(TestCase):
self.assertEqual(Gst.TIME_ARGS(Gst.SECOND), '0:00:01.000000000')
-class TestNotInitialized(TestCase):
- def testNotInitialized(self):
- if sys.version_info >= (3, 0):
- assert_type = Gst.NotInitialized
- else:
- assert_type = TypeError
-
- with self.assertRaises(assert_type):
- Gst.Caps.from_string("audio/x-raw")
-
- with self.assertRaises(assert_type):
- Gst.Structure.from_string("audio/x-raw")
-
- with self.assertRaises(assert_type):
- Gst.ElementFactory.make("identity", None)
-
- def testNotDeinitialized(self):
- Gst.init(None)
-
- assert(Gst.Caps.from_string("audio/x-raw"))
- assert(Gst.Structure.from_string("audio/x-raw"))
- assert(Gst.ElementFactory.make("identity", None))
-
- Gst.deinit()
- if sys.version_info >= (3, 0):
- assert_type = Gst.NotInitialized
- else:
- assert_type = TypeError
-
- with self.assertRaises(assert_type):
- Gst.Caps.from_string("audio/x-raw")
-
- with self.assertRaises(assert_type):
- Gst.Structure.from_string("audio/x-raw")
-
- with self.assertRaises(assert_type):
- Gst.ElementFactory.make("identity", None)
-
-
class TestStructure(TestCase):
def test_new(self):
|