Adjust columns in migrations and give lens to strings and custom flight fields #48

This commit is contained in:
Nabeel Shahzad
2017-07-10 18:54:51 -05:00
parent 6f745091de
commit b5dd700044
14 changed files with 73 additions and 32 deletions

View File

@@ -22,6 +22,7 @@ class PIREPTest extends TestCase
'flight_time' => 21600, # 6 hours
'level' => 320,
'source' => 0, # manual
'fuel_used' => 100,
'notes' => 'just a pilot report',
];
@@ -52,6 +53,9 @@ class PIREPTest extends TestCase
parent::setUp(); // TODO: Change the autogenerated stub
$this->addData('base');
$this->pirepSvc = app('App\Services\PIREPService');
$conf = config('phpvms');
print_r($conf);
}
/**
@@ -121,4 +125,9 @@ class PIREPTest extends TestCase
$latest_pirep->status
);
}
public function testPirepFinances()
{
}
}