diff env/lib/python3.7/site-packages/bioblend/_tests/TestGalaxyToolData.py @ 5:9b1c78e6ba9c draft default tip

"planemo upload commit 6c0a8142489327ece472c84e558c47da711a9142"
author shellac
date Mon, 01 Jun 2020 08:59:25 -0400
parents 79f47841a781
children
line wrap: on
line diff
--- a/env/lib/python3.7/site-packages/bioblend/_tests/TestGalaxyToolData.py	Thu May 14 16:47:39 2020 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,21 +0,0 @@
-"""
-Tests the functionality of the Blend CloudMan API. These tests require working
-credentials to supported cloud infrastructure.
-"""
-from . import GalaxyTestBase, test_util
-
-
-@test_util.skip_unless_galaxy('release_15.01')
-class TestGalaxyToolData(GalaxyTestBase.GalaxyTestBase):
-
-    def test_get_data_tables(self):
-        tables = self.gi.tool_data.get_data_tables()
-        for table in tables:
-            self.assertIsNotNone(table['name'])
-
-    def test_show_data_table(self):
-        tables = self.gi.tool_data.get_data_tables()
-        table = self.gi.tool_data.show_data_table(tables[0]['name'])
-        self.assertIsNotNone(table['columns'])
-        self.assertIsNotNone(table['fields'])
-        self.assertIsNotNone(table['name'])