Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Dataset Collections to Object Oriented API #179

Merged
merged 12 commits into from
Jan 13, 2016
Prev Previous commit
Next Next commit
Method call fixes
  • Loading branch information
alexjsmac committed Jan 11, 2016
commit 48b256400cb90a83622fd461d65264e12cceda22
4 changes: 2 additions & 2 deletions tests/TestGalaxyObjects.py
Original file line number Diff line number Diff line change
Expand Up @@ -630,13 +630,13 @@ def test_update(self):
@test_util.skip_unless_galaxy('release_14.06')
def test_create_dataset_collection(self):
collection_description = self._create_collection_description()
dataset_collection = self.hist.new_dataset_collection(collection_description)
dataset_collection = self.hist.create_dataset_collection(collection_description)
self.__check_dataset_collection(dataset_collection)

@test_util.skip_unless_galaxy('release_14.06')
def test_delete_dataset_collection(self):
collection_description = self._create_collection_description()
dataset_collection = self.hist.new_dataset_collection(collection_description)
dataset_collection = self.hist.create_dataset_collection(collection_description)
dataset_collection.delete()
self.assertTrue(dataset_collection.deleted)

Expand Down