Skip to content

Instantly share code, notes, and snippets.

@durbon
Created March 18, 2013 19:34
Show Gist options
  • Save durbon/5190139 to your computer and use it in GitHub Desktop.
Save durbon/5190139 to your computer and use it in GitHub Desktop.
@Test
public void testGetSingleUser() {
expect().
statusCode(200).
body(
"email", equalTo("test@hascode.com"),
"firstName", equalTo("Tim"),
"lastName", equalTo("Testerman"),
"id", equalTo("1")).
when().
get("/service/single-user");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment