Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Feature: Profile endpoint
Scenario: creating a profile
Given path 'profiles'
And request
"""
{ "topics": [{"name": "DDD"},{"name": "Hexagonal Architecture"}],"talksFormats": ["QUICKIE","CONFERENCE"] }
"""
When method post
Then assert responseStatus == 201
And match responseHeaders['Location'] contains only (profilesUrl + userId)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment