diff options
author | Morris Jobke <hey@morrisjobke.de> | 2016-11-21 14:00:54 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2016-11-21 22:00:16 +0100 |
commit | 951f7f5eaf41f72d3e0bee01cd1f48b79ef964f3 (patch) | |
tree | cc1b791d5e0337cf0389540b19cdff33f123d483 /build/integration/features/bootstrap/SetupContext.php | |
parent | 3d9077ae3a29ab9f44ac581d7661cda0ef2d52a7 (diff) | |
download | nextcloud-server-951f7f5eaf41f72d3e0bee01cd1f48b79ef964f3.tar.gz nextcloud-server-951f7f5eaf41f72d3e0bee01cd1f48b79ef964f3.zip |
Add integration test for web based installer
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'build/integration/features/bootstrap/SetupContext.php')
-rw-r--r-- | build/integration/features/bootstrap/SetupContext.php | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/build/integration/features/bootstrap/SetupContext.php b/build/integration/features/bootstrap/SetupContext.php new file mode 100644 index 00000000000..53ad7619d3d --- /dev/null +++ b/build/integration/features/bootstrap/SetupContext.php @@ -0,0 +1,34 @@ +<?php +/** + + * + * @author Morris Jobke <hey@morrisjobke.de> + * @copyright Morris Jobke + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + */ +use Behat\Behat\Context\Context; + +require __DIR__ . '/../../vendor/autoload.php'; + + +/** + * Setup context. + */ +class SetupContext implements Context { + use BasicStructure; +} |