Skip to content

Commit

Permalink
feat: [SRTP-45] add send RTP API test
Browse files Browse the repository at this point in the history
  • Loading branch information
TommasoLencioni committed Oct 24, 2024
1 parent 41fb607 commit ba7460d
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions functional-tests/tests/test_send_rtp.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
import pytest
from api.send_rtp import send_rtp
from utils.dataset import generate_rtp_data


@pytest.mark.need_fix
def test_send_rtp():
assert True, 'This test should not fail'
def test_send_rtp_api():
rtp_data = generate_rtp_data()

response = send_rtp(rtp_data)
assert response.status_code == 200

0 comments on commit ba7460d

Please sign in to comment.