Latest

Phoenix.ConnTest: Testing Phoenix Controllers and Endpoints

Testing

Phoenix.ConnTest: Testing Phoenix Controllers and Endpoints

Phoenix applications expose their behavior through HTTP endpoints. Testing these endpoints — verifying correct status codes, response bodies, redirects, and authentication — is essential for confident Phoenix development. Phoenix.ConnTest provides exactly this capability, letting you exercise your controllers without starting an actual HTTP server. What Phoenix.ConnTest Does Phoenix.ConnTest builds

By HelpMeTest