4b: Test it returns blog posts

This commit is contained in:
Oliver Davies 2020-11-14 09:01:47 +00:00
parent 9484d924a1
commit 48ab1c9209

View file

@ -0,0 +1,14 @@
<?php
namespace Drupal\Tests\my_module\Kernel;
use Drupal\KernelTests\Core\Entity\EntityKernelTestBase;
class ArticleRepositoryTest extends EntityKernelTestBase {
/** @test */
public function it_returns_blog_posts() {
$this->assertCount(1, $articles);
}
}