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 0861f1d commit 937390fCopy full SHA for 937390f
astroquery/ipac/irsa/tests/test_irsa_remote.py
@@ -61,6 +61,14 @@ def test_query_region_polygon(self):
61
assert isinstance(result, Table)
62
assert len(result) == 7
63
64
+ def test_list_columns(self):
65
+ columns = Irsa.list_columns('slphotdr4')
66
+ assert len(columns) == 203
67
+ assert isinstance(columns, dict)
68
+
69
+ full_columns = Irsa.list_columns('slphotdr4', full=True)
70
+ assert isinstance(full_columns, Table)
71
72
def test_list_catalogs(self):
73
catalogs = Irsa.list_catalogs()
74
# Number of available catalogs may change over time, test only for significant drop.
0 commit comments