From 96266274f6b329ddcc0dccec3d136d11c04d60f8 Mon Sep 17 00:00:00 2001 From: Ricardo Gobbo de Souza Date: Fri, 13 Dec 2024 10:46:10 -0300 Subject: [PATCH] Mark test as skipped --- tests/DefaultValuesTest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/DefaultValuesTest.php b/tests/DefaultValuesTest.php index 8c16d2f..3fc6a47 100644 --- a/tests/DefaultValuesTest.php +++ b/tests/DefaultValuesTest.php @@ -21,6 +21,8 @@ public function test_model_strict() { if (method_exists(Model::class, 'shouldBeStrict')) { $this->assertTrue(Model::preventsLazyLoading()); + } else { + $this->markTestSkipped(); } }