Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stub Endpoints only on specific HTTP-Methods #1

Open
ybonjour opened this issue Mar 9, 2015 · 0 comments
Open

Stub Endpoints only on specific HTTP-Methods #1

ybonjour opened this issue Mar 9, 2015 · 0 comments

Comments

@ybonjour
Copy link
Owner

ybonjour commented Mar 9, 2015

When a double is created for an endpoint it currently stubs the endpoint for all HTTP methods.
It should be possible to create a double only for specific HTTP methods.

Something along the lines of :

spy.endpoint('/foo').should_return_error_code(500) # Stubs all HTTP methods
spy.endpoint('/foo', GET).should_return_error_code(500) # Stubs only GET
spy.endpoint('/foo', [GET, POST]).should_return_error_code(500) # Stubs GET and POST
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant