/**
  * @expectedException Zend_Feed_Exception
  */
 public function testSetBlockThrowsExceptionIfValueGreaterThan255CharsLength()
 {
     $entry = new Zend_Feed_Writer_Entry();
     $entry->setItunesBlock(str_repeat('a', 256));
 }