Test adding multiple tickers on cli
parent
7aa99019cb
commit
c8539b7373
|
@ -150,9 +150,15 @@ def test_dump_watchlists(capfd, piker_dir, ex_watchlists):
|
||||||
assert out.strip() == expected_out
|
assert out.strip() == expected_out
|
||||||
|
|
||||||
|
|
||||||
def test_ticker_added_to_watchlists(capfd, piker_dir, ex_watchlists):
|
@pytest.mark.parametrize(
|
||||||
ex_watchlists['pharma'].append('CRACK')
|
'tickers', [('CRACK',), ('CRACK', 'SUIT',)]
|
||||||
run(f"piker watchlists -d {piker_dir} add pharma CRACK")
|
)
|
||||||
|
def test_ticker_added_to_watchlists(capfd, piker_dir, ex_watchlists, tickers):
|
||||||
|
"""Verify that single or multi-ticker lists can be added.
|
||||||
|
"""
|
||||||
|
for ticker in tickers:
|
||||||
|
ex_watchlists['pharma'].append(ticker)
|
||||||
|
run(f"piker watchlists -d {piker_dir} add pharma {' '.join(tickers)}")
|
||||||
out = wl.ensure_watchlists(piker_dir)
|
out = wl.ensure_watchlists(piker_dir)
|
||||||
assert out == ex_watchlists
|
assert out == ex_watchlists
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue