From 3dc37816d93d6cfd4059963c85e4ed364b487feb Mon Sep 17 00:00:00 2001 From: Kevin McCarthy Date: Tue, 10 Jun 2014 19:27:20 -1000 Subject: [PATCH] release v0.0.1 --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index f979a72..9c62004 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,6 @@ [![Build Status](https://travis-ci.org/kevin1024/pytest-httpbin.svg?branch=master)](https://travis-ci.org/kevin1024/pytest-httpbin) -**UNDER DEVELOPMENT, not yet released** - [httpbin](https://httpbin.org/) is an amazing web service for testing HTTP libraries. It has several great endpoints that can test pretty much everything you need in a HTTP library. The only problem is: maybe you don't want to wait for your tests to travel across the Internet and back to make assertions against a remote web service (speed), and maybe you want to work offline (convenience). Enter **pytest-httpbin**. Pytest-httpbin creates a [pytest fixture](http://pytest.org/latest/fixture.html) that is dependency-injected into your tests. It automatically starts up a HTTP server in a separate thread running httpbin and provides your test with the URL in the fixture. Check out this example: