This commit is contained in:
parent
d982682a54
commit
c0d61cafdd
@ -82,13 +82,13 @@ class Home extends Model implements Feedable
|
|||||||
/**
|
/**
|
||||||
* @inheritDoc
|
* @inheritDoc
|
||||||
*/
|
*/
|
||||||
public function toFeedItem()
|
public function toFeedItem(): FeedItem
|
||||||
{
|
{
|
||||||
return FeedItem::create()
|
return FeedItem::create()
|
||||||
->id($this->id)
|
->id($this->id)
|
||||||
->title($this->title)
|
->title($this->title)
|
||||||
->summary($this->excerpt())
|
->summary($this->excerpt())
|
||||||
->author('Shikiryu')
|
->authorName('Shikiryu')
|
||||||
->updated($this->created_at)
|
->updated($this->created_at)
|
||||||
->link(\route('public.view', ['slug' => $this->slug]))
|
->link(\route('public.view', ['slug' => $this->slug]))
|
||||||
;
|
;
|
||||||
|
@ -1,21 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Tests\Feature;
|
|
||||||
|
|
||||||
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
||||||
use Tests\TestCase;
|
|
||||||
|
|
||||||
class ExampleTest extends TestCase
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* A basic test example.
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function testBasicTest()
|
|
||||||
{
|
|
||||||
$response = $this->get('/');
|
|
||||||
|
|
||||||
$response->assertStatus(200);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,18 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Tests\Unit;
|
|
||||||
|
|
||||||
use PHPUnit\Framework\TestCase;
|
|
||||||
|
|
||||||
class ExampleTest extends TestCase
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* A basic test example.
|
|
||||||
*
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
public function testBasicTest()
|
|
||||||
{
|
|
||||||
$this->assertTrue(true);
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user