Slide 36
Slide 36 text
stubRequest(@"POST", @"http://hello.com").
withHeader(@"Content-Type", @"text/plain").
withHeader(@"X-MY-AWESOME-HEADER", @"sisisi").
withBody(@"Adios!").
andReturn(200).
withHeader(@"Content-Type", @"text/plain").
withBody(@"hola");
METHOD CHAINING (dot notation)
luisobo/Nocilla