Example #1
0
 /**
  * @covers \Phinx\Config\Config::getSeedPath
  * @expectedException \UnexpectedValueException
  * @expectedExceptionMessage Seeds path missing from config file
  */
 public function testGetSeedPathThrowsException()
 {
     $config = new \Phinx\Config\Config(array());
     $this->assertEquals('db/seeds', $config->getSeedPath());
 }