aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/App/AppStore/Bundles/GroupwareBundleTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/App/AppStore/Bundles/GroupwareBundleTest.php')
-rw-r--r--tests/lib/App/AppStore/Bundles/GroupwareBundleTest.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/lib/App/AppStore/Bundles/GroupwareBundleTest.php b/tests/lib/App/AppStore/Bundles/GroupwareBundleTest.php
new file mode 100644
index 00000000000..be756dbc55e
--- /dev/null
+++ b/tests/lib/App/AppStore/Bundles/GroupwareBundleTest.php
@@ -0,0 +1,25 @@
+<?php
+
+/**
+ * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ */
+
+namespace Test\App\AppStore\Bundles;
+
+use OC\App\AppStore\Bundles\GroupwareBundle;
+
+class GroupwareBundleTest extends BundleBase {
+ protected function setUp(): void {
+ parent::setUp();
+ $this->bundle = new GroupwareBundle($this->l10n);
+ $this->bundleIdentifier = 'GroupwareBundle';
+ $this->bundleName = 'Groupware bundle';
+ $this->bundleAppIds = [
+ 'calendar',
+ 'contacts',
+ 'deck',
+ 'mail'
+ ];
+ }
+}