////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Test all local stuff
def test_get_cached_datasets(self):
raise Exception()
def test_get_cached_dataset(self):
raise Exception()
After Change
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Test all local stuff
def test_get_cached_datasets(self):
workdir = os.path.dirname(os.path.abspath(__file__))
workdir = os.path.join(workdir, "files")
connector = APIConnector(cache_directory=workdir)
datasets = connector.get_cached_datasets()
self.assertIsInstance(datasets, dict)