diff --git a/web/modules/custom/my_module/tests/src/Kernel/ArticleRepositoryTest.php b/web/modules/custom/my_module/tests/src/Kernel/ArticleRepositoryTest.php
index 3a5408d..2d3468b 100644
--- a/web/modules/custom/my_module/tests/src/Kernel/ArticleRepositoryTest.php
+++ b/web/modules/custom/my_module/tests/src/Kernel/ArticleRepositoryTest.php
@@ -41,6 +41,20 @@ class ArticleRepositoryTest extends EntityKernelTestBase {
     $this->assertCount(3, $articles);
   }
 
+  /** @test */
+  public function only_published_articles_are_returned() {
+    $this->createNode(['type' => 'article', 'status' => NodeInterface::PUBLISHED])->save();
+    $this->createNode(['type' => 'article', 'status' => NodeInterface::NOT_PUBLISHED])->save();
+    $this->createNode(['type' => 'article', 'status' => NodeInterface::PUBLISHED])->save();
+    $this->createNode(['type' => 'article', 'status' => NodeInterface::NOT_PUBLISHED])->save();
+    $this->createNode(['type' => 'article', 'status' => NodeInterface::PUBLISHED])->save();
+
+    $repository = $this->container->get(ArticleRepository::class);
+    $articles = $repository->getAll();
+
+    $this->assertCount(3, $articles);
+  }
+
   protected function setUp() {
     parent::setUp();