mirror of
https://github.com/LibreTranslate/LibreTranslate.git
synced 2025-03-03 15:32:14 +02:00
17 lines
335 B
Python
17 lines
335 B
Python
import json
|
|
|
|
|
|
def test_api_detect_language(client):
|
|
response = client.post("/translate", data={
|
|
"q": "Hello",
|
|
"source": "en",
|
|
"target": "es",
|
|
"format": "text"
|
|
})
|
|
|
|
response_json = json.loads(response.data)
|
|
|
|
assert "translatedText" in response_json
|
|
assert response.status_code == 200
|
|
|