File: test_datasets.py

package info (click to toggle)
astroml 0.4.post1-6
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 892 kB
  • sloc: python: 5,492; 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)