Ejemplo n.º 1
0
 public function testAddOwner()
 {
     $feed = new Writer\Feed;
     $feed->addItunesOwner(array('name'=>'joe','email'=>'*****@*****.**'));
     $this->assertEquals(array(array('name'=>'joe','email'=>'*****@*****.**')), $feed->getItunesOwners());
 }