move near method into a scope

This commit is contained in:
Jonny Barnes 2017-05-30 20:07:40 +01:00
parent 451437ed6a
commit db9f3508ac
3 changed files with 5 additions and 3 deletions

View file

@ -4,6 +4,7 @@ namespace Tests\Unit;
use App\Place;
use Tests\TestCase;
use Phaza\LaravelPostgis\Geometries\Point;
use Illuminate\Foundation\Testing\DatabaseMigrations;
use Illuminate\Foundation\Testing\DatabaseTransactions;
@ -16,7 +17,7 @@ class PlacesTest extends TestCase
*/
public function test_near_method()
{
$nearby = Place::near(53.5, -2.38, 1000);
$nearby = Place::near(new Point(53.5, -2.38), 1000)->get();
$this->assertEquals('the-bridgewater-pub', $nearby[0]->slug);
}
}