Files
OpenBB/tests/openbb_terminal/forex/test_av_model.py
jmaslek b71abcfbf4 Updating some names (#1575)
* quick econ fix

* black

* keys and feature flags

* terminal name 👀

* some more replacements

* some more replacements

* edit pyproject

* gst -> openbb

* add example portfolios back to git

* Update api from gst

* sorry.  skipping some tests

* another round of names

* another round of test edits

* Missed some .gst refs and update timezone

* water mark stuff

* Fixing Names in terminal.spec and name of GTFF_DEFAULTS to OBBFF_DEFAULTS

* fix more GST to OpenBB Terminal

* Logging : merge conflicts with main

* Revert wrong files

Co-authored-by: Andrew <andrew.kenreich@gmail.com>
Co-authored-by: DidierRLopes <dro.lopes@campus.fct.unl.pt>
Co-authored-by: Chavithra PARANA <chavithra@gmail.com>
2022-03-29 09:46:26 -04:00

35 lines
668 B
Python

# IMPORTATION STANDARD
# IMPORTATION THIRDPARTY
import pytest
# IMPORTATION INTERNAL
from openbb_terminal.forex import av_model
@pytest.fixture(scope="module")
def vcr_config():
return {
"filter_query_parameters": [
("apikey", "MOCK_API_KEY"),
]
}
@pytest.mark.vcr
@pytest.mark.parametrize(
"from_symbol, to_symbol",
[
("EUR", "USD"),
("USD", "JPY"),
("GBP", "EUR"),
("CHF", "USD"),
],
)
def test_get_historical(from_symbol, to_symbol, recorder):
result = av_model.get_historical(
to_symbol=to_symbol,
from_symbol=from_symbol,
)
recorder.capture(result)