Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
tinuademargaret committed Feb 10, 2021
1 parent 70e8271 commit d61409e
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions astroquery/ogle/tests/test_ogle_remote.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@

import pytest
import astropy.units as u
from astropy.coordinates import SkyCoord

from .. import Ogle


@pytest.mark.remote_data
def test_ogle_single():
co = SkyCoord(0, 3, unit=(u.degree, u.degree), frame='galactic')
response = Ogle.query_region(coord=co)
assert len(response) == 1


@pytest.mark.remote_data
def test_ogle_list():
co = SkyCoord(0, 3, unit=(u.degree, u.degree), frame='galactic')
co_list = [co, co, co]
response = Ogle.query_region(coord=co_list)
assert len(response) == 3
assert response['RA/Lon'][0] == response['RA/Lon'][1] == response['RA/Lon'][2]


@pytest.mark.remote_data
def test_ogle_list_values():
co_list = [[0, 0, 0], [3, 3, 3]]
response = Ogle.query_region(coord=co_list)
assert len(response) == 3
assert response['RA/Lon'][0] == response['RA/Lon'][1] == response['RA/Lon'][2]

0 comments on commit d61409e

Please sign in to comment.