Status Command

TODO

Should fail if status codes doesn't match

Given there is no resource at /hello
When following fixture is executed:
<rest:request>
	<rest:get>/hello</rest:get>
	<rest:status>HTTP/1.1 200 OK</rest:status>
</rest:request>		
		
Then it should produce following output:
/hello HTTP/1.1 200 OK HTTP/1.1 404 Not Found

Should be successful if status codes match

Given there is resource at /hello
When following fixture is executed:
<rest:request>
	<rest:get>/hello</rest:get>
	<rest:status>HTTP/1.1 200 OK</rest:status>
</rest:request>		
		
Then it should produce following output:
/hello HTTP/1.1 200 OK