We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f3895e commit c4d5848Copy full SHA for c4d5848
pandas_datareader/tests/test_econdb.py
@@ -12,6 +12,22 @@ def assert_equal(x, y):
12
13
14
class TestEcondb(object):
15
+
16
+ def test_override_start_end(self):
17
+ df = web.DataReader(
18
+ '&'.join([
19
+ 'dataset=RBI_BULLETIN',
20
+ 'v=TIME',
21
+ 'h=Indicator',
22
+ 'from=2022-01-01',
23
+ 'to=2022-07-01'
24
+ ]),
25
+ 'econdb',
26
+ start='2020-01-01',
27
+ end='2022-01-01'
28
+ )
29
+ assert isinstance(df.index, pd.DatetimeIndex)
30
31
def test_infer_start_end_from_symbols(self):
32
df = web.DataReader(
33
(
0 commit comments