summaryrefslogtreecommitdiff
path: root/test/test_all.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_all.py')
-rwxr-xr-xtest/test_all.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/test_all.py b/test/test_all.py
index b07cb35..1dd01ed 100755
--- a/test/test_all.py
+++ b/test/test_all.py
@@ -228,7 +228,9 @@ class TestFreebase(unittest.TestCase):
r = freebase.sandbox.uri_submit("http://datamob.org/media/detail_freebase.png")
self.assertEqual(r['/type/content/media_type'], 'image/png')
-
+ def test_version(self):
+ r = freebase.version()
+ self.assertNotEqual(len(r), 0)
if __name__ == '__main__':
if USERNAME == "username" and PASSWORD == "password":