34 lines
833 B
PHP
34 lines
833 B
PHP
<?php
|
|
|
|
use Database\Tester\Models\Post;
|
|
|
|
class ModelTest extends PluginTestCase
|
|
{
|
|
public function setUp() : void
|
|
{
|
|
parent::setUp();
|
|
|
|
include_once base_path().'/tests/fixtures/plugins/database/tester/models/Post.php';
|
|
|
|
$this->runPluginRefreshCommand('Database.Tester');
|
|
}
|
|
|
|
public function testCreateFirstPost()
|
|
{
|
|
Post::truncate();
|
|
$post = new Post;
|
|
$post->title = "First post";
|
|
$post->description = "Yay!!";
|
|
$post->save();
|
|
$this->assertEquals(1, $post->id);
|
|
}
|
|
|
|
public function testGuardedAttribute()
|
|
{
|
|
$this->expectException(\Illuminate\Database\Eloquent\MassAssignmentException::class);
|
|
$this->expectExceptionMessageMatches('/title/');
|
|
|
|
Post::create(['title' => 'Hi!', 'slug' => 'authenticity']);
|
|
}
|
|
}
|