/**
  * Test the unsubscribing of a mailing list as anonymous user.
  */
 public function testUnSubscribeFromMailingConsumer()
 {
     $unsubscribe_from_mailing_xml = file_get_contents(dirname(__FILE__) . '/data/unsubscribe_from_mailing_success.xml');
     $this->oauthClient->expects($this->once())->method('consumerPostAsXml')->with('mailing/v2/3/unsubscribe', array('userId' => 1))->will($this->returnValue($unsubscribe_from_mailing_xml));
     $this->cultureFeed->unSubscribeFromMailing(1, 3, FALSE);
 }