We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2de3e1 commit e2fc698Copy full SHA for e2fc698
astroquery/ipac/irsa/tests/test_irsa_remote.py
@@ -71,6 +71,14 @@ def test_list_catalogs(self):
71
# (at the time of writing there are 933 tables in the list).
72
assert len(catalogs) > 900
73
74
+ def test_list_collections(self):
75
+ collections = Irsa.list_collections()
76
+ # Number of available collections may change over time, test only for significant drop.
77
+ # (at the time of writing there are 110 collections in the list).
78
+ assert len(collections) > 100
79
+ assert 'spitzer_seip' in collections['collection']
80
+ assert 'wise_allwise' in collections['collection']
81
+
82
def test_tap(self):
83
query = "SELECT TOP 5 ra,dec FROM cosmos2015"
84
with pytest.warns(expected_warning=DALOverflowWarning,
0 commit comments