diff --git a/astroquery/tests/test_irsa.py b/astroquery/tests/test_irsa.py new file mode 100644 index 0000000000..051aa823d5 --- /dev/null +++ b/astroquery/tests/test_irsa.py @@ -0,0 +1,10 @@ +import astroquery.irsa +import pytest + +def test_trivial(): + """ just make sure it doesn't raise anything + takes about 3-5 seconds""" + tbl = astroquery.irsa.query_gator_box('pt_src_cat','83.808 -5.391',300) + + assert len(tbl) == 100 # at least, that's what I got... + return tbl