(self)
| 36 | self.assertEqual(v.ticker, "AAPL") |
| 37 | |
| 38 | def test_transcript(self): |
| 39 | v = self.adapter.validate_python( |
| 40 | {"type": "transcript", "text": "Operator: ..."} |
| 41 | ) |
| 42 | self.assertIsInstance(v, TranscriptText) |
| 43 | |
| 44 | def test_http(self): |
| 45 | v = self.adapter.validate_python( |
nothing calls this directly
no outgoing calls
no test coverage detected