/robot-test

This is a basic Robot Framework test for a FastAPI app.

Primary LanguageRobotFramework

Robot Framework Test for FastAPI

This is a basic Robot Framework test for a FastAPI app.

Test Case

  • Sends GET request to /ping
  • Expects HTTP 200 status and JSON { "message": "pong" }

How to Run

  1. Start your FastAPI app on http://localhost:8000:
uvicorn main:app --reload