File: test_datasets.py

package info (click to toggle)
astroml 1.0.2-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 932 kB
  • sloc: python: 5,731; makefile: 3
file content (8 lines) | stat: -rw-r--r-- 181 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
import pytest
from astroML.datasets import fetch_great_wall


@pytest.mark.remote_data
def test_fetch_great_wall():
    data = fetch_great_wall()
    assert data.shape == (8014, 2)