jonnybarnes.uk/tests/PlacesTest.php
Jonny Barnes 0a07811311 Squashed commit of the following:
commit 70d23bbd8fbdbeb3b6554e42ac4283396372f39d
Author: Jonny Barnes <jonny@jonnybarnes.uk>
Date:   Fri Feb 3 21:40:55 2017 +0000

    Updade to Laravel 5.4
2017-02-03 21:49:49 +00:00

52 lines
1.1 KiB
PHP

<?php
namespace App\Tests;
use BrowserKitTest;
use Illuminate\Foundation\Testing\WithoutMiddleware;
use Illuminate\Foundation\Testing\DatabaseMigrations;
use Illuminate\Foundation\Testing\DatabaseTransactions;
class PlacesTest extends BrowserKitTest
{
protected $appurl;
public function setUp()
{
parent::setUp();
$this->appurl = config('app.url');
}
/**
* Test the `/places` page for OK response.
*
* @return void
*/
public function testPlacesPage()
{
$this->visit($this->appurl . '/places')
->assertResponseOK();
}
/**
* Test a specific place.
*
* @return void
*/
public function testSinglePlace()
{
$this->visit($this->appurl . '/places/the-bridgewater-pub')
->see('The Bridgewater Pub');
}
/**
* Test the nearby method returns a collection.
*
* @return void
*/
public function testNearbyMethod()
{
$nearby = \App\Place::near(53.5, -2.38, 1000);
$this->assertEquals('the-bridgewater-pub', $nearby[0]->slug);
}
}