コード例 #1
0
ファイル: RunnerTest.php プロジェクト: scottdavis/active_php
 public function testGetMaxVersion()
 {
     MigrationRunner::up(123456789);
     $data = MigrationRunner::load_files();
     $max = MigrationRunner::current_version();
     $this->assertEquals(123456789, $max);
 }