<?php

namespace Tests\Unit;

use Tests\TestCase;

use App\Models\Location;

class LocationTest extends TestCase
{

    public function test_a_location_can_be_created()
    {
        $location = (new Location)->saveLocation();

        $this->assertInstanceOf(Location::class, $location);

        $this->assertNotNull($location->country);
        $this->assertNotNull($location->region);
        $this->assertNotNull($location->city);
    }

}
