summaryrefslogtreecommitdiffstats
path: root/openbb_platform/providers/intrinio/tests/test_intrinio_fetchers.py
diff options
context:
space:
mode:
Diffstat (limited to 'openbb_platform/providers/intrinio/tests/test_intrinio_fetchers.py')
-rw-r--r--openbb_platform/providers/intrinio/tests/test_intrinio_fetchers.py36
1 files changed, 36 insertions, 0 deletions
diff --git a/openbb_platform/providers/intrinio/tests/test_intrinio_fetchers.py b/openbb_platform/providers/intrinio/tests/test_intrinio_fetchers.py
index 634948f47c1..2aaacba666b 100644
--- a/openbb_platform/providers/intrinio/tests/test_intrinio_fetchers.py
+++ b/openbb_platform/providers/intrinio/tests/test_intrinio_fetchers.py
@@ -20,6 +20,12 @@ from openbb_intrinio.models.etf_price_performance import (
)
from openbb_intrinio.models.etf_search import IntrinioEtfSearchFetcher
from openbb_intrinio.models.financial_ratios import IntrinioFinancialRatiosFetcher
+from openbb_intrinio.models.forward_eps_estimates import (
+ IntrinioForwardEpsEstimatesFetcher,
+)
+from openbb_intrinio.models.forward_sales_estimates import (
+ IntrinioForwardSalesEstimatesFetcher,
+)
from openbb_intrinio.models.fred_series import IntrinioFredSeriesFetcher
from openbb_intrinio.models.historical_attributes import (
IntrinioHistoricalAttributesFetcher,
@@ -40,6 +46,9 @@ from openbb_intrinio.models.market_indices import IntrinioMarketIndicesFetcher
from openbb_intrinio.models.market_snapshots import IntrinioMarketSnapshotsFetcher
from openbb_intrinio.models.options_chains import IntrinioOptionsChainsFetcher
from openbb_intrinio.models.options_unusual import IntrinioOptionsUnusualFetcher
+from openbb_intrinio.models.price_target_consensus import (
+ IntrinioPriceTargetConsensusFetcher,
+)
from openbb_intrinio.models.reported_financials import IntrinioReportedFinancialsFetcher
from openbb_intrinio.models.search_attributes import (
IntrinioSearchAttributesFetcher,
@@ -420,3 +429,30 @@ def test_intrinio_market_snapshots_fetcher(credentials=test_credentials):
fetcher = IntrinioMarketSnapshotsFetcher()
result = fetcher.test(params, credentials)
assert result is None
+
+
+@pytest.mark.record_http
+def test_intrinio_forward_eps_estimates_fetcher(credentials=test_credentials):
+ params = {"symbol": "AAPL"}
+
+ fetcher = IntrinioForwardEpsEstimatesFetcher()
+ result = fetcher.test(params, credentials)
+ assert result is None
+
+
+@pytest.mark.record_http
+def test_intrinio_forward_sales_estimates_fetcher(credentials=test_credentials):
+ params = {"symbol": "AAPL"}
+
+ fetcher = IntrinioForwardSalesEstimatesFetcher()
+ result = fetcher.test(params, credentials)
+ assert result is None
+
+
+@pytest.mark.record_http
+def test_intrinio_price_target_consensus_fetcher(credentials=test_credentials):
+ params = {"symbol": "AAPL"}
+
+ fetcher = IntrinioPriceTargetConsensusFetcher()
+ result = fetcher.test(params, credentials)
+ assert result is None