list trips

add, remove flights
This commit is contained in:
Richard Morgan
2017-05-14 22:08:50 -04:00
parent 09fa83af8b
commit 42dc785735
19 changed files with 228 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<?php
namespace Trips;
use App\Libraries\Trips\Models\Flights;
use \FunctionalTester;
class FlightModelCest
{
public function _before(FunctionalTester $I)
{
}
public function _after(FunctionalTester $I)
{
}
// tests
public function canSave(FunctionalTester $I)
{
$trip = new Flights(['destination' => 'YUL']);
$trip->save();
}
}