At http://code.google.com/p/rest-assured/wiki/Usage#Full_body/content_matching
the code looks like this:
expect().body(equalsTo("something")). ..
expect().content(equalsTo("something")). .. // Same as above
while it should look like this:
expect().body(equalTo("something")). ..
expect().content(equalTo("something")). .. // Same as above
It should be "equalTo", not "equalsTo", or am I mistaken?
Original issue reported on code.google.com by klaus.do...@gmail.com on 29 May 2012 at 3:24
Original issue reported on code.google.com by
klaus.do...@gmail.com
on 29 May 2012 at 3:24