Beispiel #1
0
 public function testRemoveColumn()
 {
     // stub adapter
     $adapterStub = $this->getMock('\\Phinx\\Db\\Adapter\\MysqlAdapter', array(), array(array()));
     $adapterStub->expects($this->once())->method('dropColumn');
     $table = new \Phinx\Db\Table('ntable', array(), $adapterStub);
     $table->removeColumn('test');
 }