aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/Wallabag/CoreBundle/WallabagCoreTestCase.php
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2016-09-24 19:57:59 +0200
committerJeremy Benoist <jeremy.benoist@gmail.com>2016-09-24 19:57:59 +0200
commit0e0102b6fcd17266f39dd63a808740d01ab9bd8a (patch)
tree18dfb21ca8e417343d844eb5f5f09fd6b9a11130 /tests/Wallabag/CoreBundle/WallabagCoreTestCase.php
parent13a522dfbd64d1eb14b6e3715289753b0506ded0 (diff)
downloadwallabag-0e0102b6fcd17266f39dd63a808740d01ab9bd8a.tar.gz
wallabag-0e0102b6fcd17266f39dd63a808740d01ab9bd8a.tar.zst
wallabag-0e0102b6fcd17266f39dd63a808740d01ab9bd8a.zip
Avoid failing test for user who didn’t install Redis
Diffstat (limited to 'tests/Wallabag/CoreBundle/WallabagCoreTestCase.php')
-rw-r--r--tests/Wallabag/CoreBundle/WallabagCoreTestCase.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/Wallabag/CoreBundle/WallabagCoreTestCase.php b/tests/Wallabag/CoreBundle/WallabagCoreTestCase.php
index c0055888..75b7ee0b 100644
--- a/tests/Wallabag/CoreBundle/WallabagCoreTestCase.php
+++ b/tests/Wallabag/CoreBundle/WallabagCoreTestCase.php
@@ -80,4 +80,19 @@ abstract class WallabagCoreTestCase extends WebTestCase
80 80
81 throw new \RuntimeException('No logged in User.'); 81 throw new \RuntimeException('No logged in User.');
82 } 82 }
83
84 /**
85 * Check if Redis is installed.
86 * If not, mark test as skip
87 */
88 protected function checkRedis()
89 {
90 try {
91 $this->client->getContainer()->get('wallabag_core.redis.client')->connect();
92 } catch (\Exception $e) {
93 $this->markTestSkipped(
94 'Redis is not installed/activated'
95 );
96 }
97 }
83} 98}