/**
  * @expectedException Zend_Feed_Exception
  */
 public function testSetDurationThrowsExceptionOnInvalidMinutes()
 {
     $entry = new Zend_Feed_Writer_Entry();
     $entry->setItunesDuration('23:234:45');
 }