Created
May 18, 2020 23:16
-
-
Save vepo/8f919831e48311235b7cc00d67fa6ee6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Suite UserTest { | |
Properties { | |
userContent: """ | |
{ | |
"id": 123, | |
"firstName": "John", | |
"lastName" : "Doe" | |
}""" | |
} | |
HTTP CreateUser { | |
url : "http://127.0.0.1:9999" | |
method: "POST" | |
body : ${userContent} | |
assert statusCode Equals 200 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment