Skip to content

Commit c40c06a

Browse files
authored
Update test_stooq.py
1 parent 3069a2b commit c40c06a

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

pandas_datareader/tests/test_stooq.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,12 @@ def test_stooq_sp500():
2525
def test_get_data_stooq_dax():
2626
f = get_data_stooq('^DAX')
2727
assert f.shape[0] > 0
28+
29+
def test_stooq_googl():
30+
f = get_data_stooq('GOOGL.US')
31+
assert f.shape[0] > 0
32+
33+
34+
def test_get_data_ibm():
35+
f = get_data_stooq('IBM.UK')
36+
assert f.shape[0] > 0

0 commit comments

Comments
 (0)