Skip to content

Commit 480006c

Browse files
committed
test for futures
1 parent c5be817 commit 480006c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

pandas_datareader/tests/test_stooq.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ def test_stooq_sp500():
2525
f = get_data_stooq("^SPX")
2626
assert f.shape[0] > 0
2727

28+
def test_stooq_clx19f():
29+
f = get_data_stooq("CLX19.F", start="20190101", end="20190115")
30+
assert f.shape[0] > 0
31+
2832

2933
def test_get_data_stooq_dax():
3034
f = get_data_stooq("^DAX")
@@ -39,3 +43,5 @@ def test_stooq_googl():
3943
def test_get_data_ibm():
4044
f = get_data_stooq("IBM.UK")
4145
assert f.shape[0] > 0
46+
47+

0 commit comments

Comments
 (0)