Skip to content

Commit

Permalink
missing test added
Browse files Browse the repository at this point in the history
  • Loading branch information
650elx committed Oct 23, 2024
1 parent f7e39e1 commit 5357d3f
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions tests/e2e/verification/test_start_verification.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,22 @@ def test_start_verification_phone_call(
assert isinstance(verification_response, StartPhoneCallVerificationResponse)


def test_start_verification_callout(
sinch_client_sync,
phone_number
):
verification_response = sinch_client_sync.verification.verifications.start_callout(
identity={
"type": "number",
"endpoint": phone_number
},
reference="random32",
speech_locale="en-US"
)

assert isinstance(verification_response, StartPhoneCallVerificationResponse)


@pytest.mark.skip(reason="Data verification. Mobile carrier support required.")
def test_start_verification_seamless(
sinch_client_sync,
Expand Down

0 comments on commit 5357d3f

Please sign in to comment.