Esempio n. 1
0
 public function testRemoveIndexByName()
 {
     // stub adapter
     $adapterStub = $this->getMock('\\Phinx\\Db\\Adapter\\MysqlAdapter', array(), array(array()));
     $adapterStub->expects($this->once())->method('dropIndexByName');
     $table = new \Phinx\Db\Table('ntable', array(), $adapterStub);
     $table->removeIndexByName('emailindex');
 }