summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test_gio.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/test_gio.py b/tests/test_gio.py
index 4acb387..39f7796 100644
--- a/tests/test_gio.py
+++ b/tests/test_gio.py
@@ -443,3 +443,11 @@ class TestAppInfo(unittest.TestCase):
def testSimple(self):
self.assertEquals(self.appinfo.get_description(),
"Custom definition for does-not-exist")
+
+class TestVfs(unittest.TestCase):
+ def setUp(self):
+ self.vfs = gio.vfs_get_default()
+
+ def testGetSupportedURISchemes(self):
+ result = self.vfs.get_supported_uri_schemes()
+ self.failUnless(isinstance(result, [])